summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/chletter
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-07-31 00:27:42 +0000
committerKarl Berry <karl@freefriends.org>2008-07-31 00:27:42 +0000
commit410cc7e8f060e82bbcdd0749551c4f159329b0cf (patch)
treeb5c19a8151d6b0dd197d833b49e560c5f5fba8ec /Master/texmf-dist/doc/latex/chletter
parent987f9f45ed7155a825fee4b8f9fce1364bf7bb16 (diff)
new latex package chletter (29jul08)
git-svn-id: svn://tug.org/texlive/trunk@9913 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/chletter')
-rw-r--r--Master/texmf-dist/doc/latex/chletter/README14
-rw-r--r--Master/texmf-dist/doc/latex/chletter/chletterdoc.pdfbin0 -> 123075 bytes
-rw-r--r--Master/texmf-dist/doc/latex/chletter/sampleletter.ltx27
3 files changed, 41 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/chletter/README b/Master/texmf-dist/doc/latex/chletter/README
new file mode 100644
index 00000000000..f54286a40ae
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/chletter/README
@@ -0,0 +1,14 @@
+{chletter}[2008/07/29 v1.0 Swiss Letter document class]
+
+A class for typesetting letters or small documents according to the swiss rules. No assumption is made about the language used.
+
+This class is based on the standard LaTeX classes and is mostly "source compatible" with the LaTeX letter class. Unlike the letter class, this one places the addresses fields according to the specifications of the swiss C6/5 or C5 envelopes, windowed or not. The labels generation mecanism is somewhat different.
+
+Provided files:
+chletter.dtx code and documentation
+chletter.ins install script
+chletterdoc.pdf user documentation in french
+sampleletter.ltx a sample letter
+
+Copyright 2008 Boris Oriet
+The licence is LPPL.
diff --git a/Master/texmf-dist/doc/latex/chletter/chletterdoc.pdf b/Master/texmf-dist/doc/latex/chletter/chletterdoc.pdf
new file mode 100644
index 00000000000..726191937dd
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/chletter/chletterdoc.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/chletter/sampleletter.ltx b/Master/texmf-dist/doc/latex/chletter/sampleletter.ltx
new file mode 100644
index 00000000000..82ba33e2e78
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/chletter/sampleletter.ltx
@@ -0,0 +1,27 @@
+%
+% Copyright 2008 Boris Oriet
+% The licence is LPPL.
+%
+\documentclass{chletter} % defaults: 11pt,a4paper,oneside
+\title{sampleletter} %
+\author{author} % if no signature specified
+\name{fromname} % to appear in the footer
+\signature{fromsig} % to appear after valediction
+\location{office} % to appear in the sender address zone
+\address{fromaddress} % to appear at the upper left
+\return{returnaddress} % to appear in the window
+\telephone{telephone} % to appear under the address
+\date{place, \today} % to alter the date string
+\makelabels % envelope page with return address
+\begin{document} %
+ \begin{letter}{toname % gets the recipient name and address
+ \\toaddress} % and creates the addresses zones
+ \conc[l]{subject} % the letter's subject, left aligned
+ \opening[i]{salutation} % the salutation, text will be indented
+ text % the letter's main text
+ \closing{valediction} % adds the signature
+ \ps{\emph{ps}}post % creates a post scriptum
+ \cc{copies} % creates a copies field
+ \encl{enclosures} % creates an enclosures field
+ \end{letter} %
+\end{document} % \ No newline at end of file