From bbaa2771623badbbcc06891663bcb1294092ddf0 Mon Sep 17 00:00:00 2001 From: Stephen McQuay Date: Mon, 14 Jan 2013 11:25:21 -0700 Subject: [PATCH] init --- letter.tex | 37 +++++++++++++++++++++++++++++++++++++ makefile | 9 +++++++++ 2 files changed, 46 insertions(+) create mode 100644 letter.tex create mode 100644 makefile diff --git a/letter.tex b/letter.tex new file mode 100644 index 0000000..1ffe096 --- /dev/null +++ b/letter.tex @@ -0,0 +1,37 @@ +% example from : http://en.wikibooks.org/wiki/LaTeX/Letters +\documentclass{letter} +\usepackage{hyperref} +\signature{Joe Bloggs} +\address{21 Bridge Street \\ Smallville \\ Dunwich DU3 4WE} +\begin{document} + +\begin{letter}{Director \\ Doe \& Co \\ 35 Anthony Road +\\ Newport \\ Ipswich IP3 5RT} +\opening{Dear Sir or Madam:} + +I am writing to you on behalf of the Wikipedia project (http://www.wikipedia.org/), +an endeavour to build a fully-fledged multilingual encyclopaedia in an entirely +open manner, to ask for permission to use your copyrighted material. + +% The \ldots command produces dots in a way that will not upset +% the typesetting of the document. +\ldots + +That said, allow me to reiterate that your material will be used to the noble end of +providing a free collection of knowledge for everyone; naturally enough, only if you +agree. If that is the case, could you kindly fill in the attached form and post it +back to me? We shall greatly appreciate it. + +Thank you for your time and consideration. + +I look forward to your reply. + +\closing{Yours Faithfully,} + +\ps{P.S. You can find the full text of GFDL license at +\url{http://www.gnu.org/copyleft/fdl.html}.} +\encl{Copyright permission form} + +\end{letter} + +\end{document} diff --git a/makefile b/makefile new file mode 100644 index 0000000..45e1eff --- /dev/null +++ b/makefile @@ -0,0 +1,9 @@ +letter.pdf: *.tex + pdflatex letter +# scp prospectus.pdf Macintosh.local:~/Desktop/ + +clean: + rm -f *.aux *.out *.bbl *.blg *.dvi *.log *.pdf *.toc *.eps + +spell: + aspell --mode=tex --dont-tex-check-comments check *.tex