Skip to content

Instantly share code, notes, and snippets.

@huwr
Last active January 2, 2016 08:29
Show Gist options
  • Save huwr/8276743 to your computer and use it in GitHub Desktop.
Save huwr/8276743 to your computer and use it in GitHub Desktop.
A Residential Lodging Agreement I made with a lodger in 2012. A few mistakes...
% XeLaTeX can use any Mac OS X font. See the setromanfont command below.
% Input to XeLaTeX is full Unicode, so Unicode characters can be typed directly into the source.
% The next lines tell TeXShop to typeset with xelatex, and to open and save the source with Unicode encoding.
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass[12pt]{article}
\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.
\geometry{a4paper} % ... or a4paper or a5paper or ...
%\geometry{landscape} % Activate for for rotated page geometry
%\usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent
\usepackage{graphicx}
\usepackage{amssymb}
% Sweet hyper references.
\usepackage{hyperref}
\usepackage{titlesec}
\usepackage{fontspec,xltxtra,xunicode}
\defaultfontfeatures{Mapping=tex-text}
\setsansfont[Mapping=tex-text]{Gill Sans}
\setromanfont[Mapping=tex-text]{Hoefler Text}
\titleformat*{\section}{\large\sffamily}
%\myname command
\newcommand{\myname} {Slartibartfast}
\newcommand{\lessor} {\myname}
\newcommand{\lessee} {Ford Prefect}
\newcommand{\rent} {\$200}
\newcommand{\bond} {\$400}
\newcommand{\address}{13 of 14 Party Lane, Happyville}
%Set up meta data for document.
\hypersetup{
bookmarks=true, % show bookmarks bar?
unicode=true, % non-Latin characters in Acrobat’s bookmarks
pdftoolbar=true, % show Acrobat’s toolbar?
pdfmenubar=true, % show Acrobat’s menu?
pdffitwindow=false, % window fit to page when opened
pdfstartview={FitH}, % fits the width of the page to the window
pdftitle={Residential Lodging Agreement}, % title
pdfauthor={\myname}, % author
pdfsubject={}, % subject of the document
pdfcreator={\myname}, % creator of the document
pdfproducer={\myname}, % producer of the document
pdfkeywords={}, % list of keywords
pdfnewwindow=true, % links in new window
colorlinks=false, % false: boxed links; true: colored links
linkcolor=red, % color of internal links
citecolor=green, % color of links to bibliography
filecolor=magenta, % color of file links
urlcolor=cyan, % color of external links
linkbordercolor={1 1 1}, % color of internal links' borders
citebordercolor={1 1 1}, % color of links to biliography's borders
filebordercolor={1 1 1}, % color of file links' borders
urlbordercolor={0 1 1}, % color of external links' borders
}
%Make date format of \today command Australian.
\renewcommand{\today}{\oldstylenums{\number\day}\space
\ifcase\month\or
January\or February\or March\or April\or May\or June\or
July\or August\or September\or October\or November\or December
\fi\space
\oldstylenums{\number\year}}
%Make \thismonth command.
\newcommand{\thismonth}{
\ifcase\month\or
January\or February\or March\or April\or May\or June\or
July\or August\or September\or October\or November\or December
\fi
\space\number\year}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%END FORMAT OPTIONS%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{Residential Lodging Agreement}
\begin{document}
%%%TITLE
\begin{center}
~
\\[1.5cm]
\textsf{\LARGE Residential Lodging Agreement}
\\[1cm]
\sf{\Large \address}
\\[1cm]
\sf{\large \today}
\\[1cm]
\end{center}
This residential lodging agreement is made between \lessor\ (the lessor) and \lessee\ (the lessee), who is lodging at the premises of \address.
%%%RENT
\section{Rent and Bond}
\begin{enumerate}
\item The rent is \rent\ per week.
\item The lessee shall pay rent fortnightly.
\item The bond is \bond\ (\textit{ie.} two weeks' rent). The lessor shall deposit the bond with the Office of Rental Bonds within 2 weeks after the day the lessor receives the bond from the lessee.
\item The lessor will return the bond to the lessee when moving out.
\item Deviation from the conditions of this agreement may result in the bond being only partially refunded, or not refunded at all.
\end{enumerate}
%%%BILLS
\section{Bills}
\begin{enumerate}
\item The lessee and lessor will pay an equal share of the utility bills.
\item The bills include power, internet and water, but do not include groceries, food, land rates or body corporate fees.
\end{enumerate}
%%%OTHER CONDITIONS
\section{Other Conditions}
\begin{enumerate}
\item Although there are no formal inspections, the lessee will treat the flat and the property of other housemates with appropriate care.
\item The lessee must not intentionally or negligently damage the premises or permit such damage; and notify the lessor of any damage as soon as possible.
\item The lessor is not obliged to repair damage caused by the negligence or wilful act of the lessee. The lessee is liable for the costs of these repairs.
\item The lessee must not make additions or alterations to the premises without the written consent of the lessor.
\item The lessee must not leave the premises vacant for more than 3 weeks without notifying the lessor. The lessee is still liable for rent when absent.
\item The lessee must notify the lessor of the need for urgent repairs as soon as practicable, and the lessor must carry out those repairs as soon as necessary, having regard to the nature of the problem.
\end{enumerate}
%%%TERMINATION
\section{Termination}
\begin{enumerate}
\item The lessee is required to give 1 weeks' notice before moving out.
\item The lessee will ensure all of their bills are paid and remove all of their belongings and leave the premises in substantially same state of cleanliness as the premises were when they moved in.
\item The lessee is not required to pay advertising costs upon moving out, or costs associated with finding a replacement.
\end{enumerate}
%%%AGREEMENT
\section{Agreement}
The lessee and lessor endeavour to openly discuss any difficulties in the household, including any variations from the above conditions.
\\[0.5cm]
\begin{flushleft}
Lessor: \line(1,0){200}, Date:\line(1,0){100}\\[1.5cm]
\end{flushleft}
\begin{flushleft}
Lessee: \line(1,0){200}, Date:\line(1,0){100}
\end{flushleft}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment