Skip to content

Instantly share code, notes, and snippets.

@ckunte
Last active March 12, 2017 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckunte/cf42a5bafd5660e38e415d0d30433ee9 to your computer and use it in GitHub Desktop.
Save ckunte/cf42a5bafd5660e38e415d0d30433ee9 to your computer and use it in GitHub Desktop.
Creates a receipt of house rent (Indian Income Tax).
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass[a5paper,11pt]{article}
\usepackage{geometry}
\usepackage{numname,sistyle}
\SIthousandsep{,}
%
% Start entering rental details below:
%
\newcommand{\mfr}{April 2016} % Month from
\newcommand{\mto}{March 2017} % Month to
\newcommand{\mrent}{30000} % monthly rent
\newcommand{\trent}{360000} % total rent for the period
\newcommand{\addr}{9, Some street, City 710210} % rented property
% Owner details
\newcommand{\owner}{John Doe}
\newcommand{\oaddr}{5, Somerset Heights \\ Crescent Villa, City 710001}
\newcommand{\opan}{XXXX0504Y} % Owner's PAN no.
%
% -- Stop editing --
%
\begin{document}
\begin{center}
\textbf{RECEIPT OF HOUSE RENT} \\
(Under Section 1 (13-A) of Income Tax Act) \\
\end{center}
\noindent Received a sum of Rs. \num{\trent}.-- \emph{(Rupees \NumToName{\trent} only)}
as rent at Rs. \num{\mrent}.-- per month from \emph{\mfr} to \emph{\mto} for the
property at \emph{\addr}.
\vspace{18mm}
\noindent Date: \today \hfill Signature of House Owner \\\\
\noindent Name: \owner \\
\noindent Address: \oaddr \\
\noindent PAN No: \opan \\
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment