diff options
Diffstat (limited to 'example_wmletter.tex')
-rw-r--r-- | example_wmletter.tex | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/example_wmletter.tex b/example_wmletter.tex new file mode 100644 index 0000000..5360c5a --- /dev/null +++ b/example_wmletter.tex @@ -0,0 +1,78 @@ +\documentclass[12pt,fullcolor]{wmletterhead} +% 'wmletterhead' class accepts all options of the 'letter' class and the following +% additional options which specify the header logo +% prior2014dec - old logo prior 2014 +% fullcolor - full color logo with yellowish WM cypher +% black - all black logo +% green - all green logo +% white - all white logo (quite use less on white background) +% DEFAULT options: [fullcolor] +% Recomended use: +% \documentclass[12pt,fullcolor]{wmletterhead} + +\address{ + Dr. Eugeniy E. Mikhailov, \\ + Assistant Professor,\\ + Department of Physics,\\ + The College of William\&Mary,\\ + P.O. Box 8795,\\ + Williamsburg, VA 23187-8795\\ +} + +\date{} +\signature{ + Eugeniy E. Mikhailov% +} + +\begin{document} +\begin{letter}{} + +\opening{ +\vskip -0.8in +Dear Colleagues, +} + +I hope that you will find `{\tt wmletterhead.cls}' useful. Its use is quite +analogous to the \LaTeX{} `{\tt letter.cls}', in fact you can specify the +{\tt letter} class options as options for {\tt wmletterhead}. For exaple +you can specify a letter font size with +\begin{verbatim} +\documentclass[12pt]{wmletterhead} +\end{verbatim} +or +\begin{verbatim} +\documentclass[10pt]{wmletterhead} +\end{verbatim} +However, there are some modifications and extra requirements. +The margins are +redefined with `{\tt geometry}' package and there are 2 extra dependencies to +output the fancy graphical header, namely, `{\tt graphicx}' and `{\tt fancyhdr}' packages. + +The main feature of the package is that you can specify old and new (since +December 2014) W\&M logos. By selecting a particular option + +\begin{itemize} + \item + {\tt prior2014dec} - old logo prior 2014 + \item + {\tt fullcolor} - full color logo with yellowish WM cypher + \item + {\tt black} - all black logo + \item + {\tt green} - all green logo + \item + {\tt white} - all white logo (quite use less on white background) +\end{itemize} + +The recommended usage is +\begin{verbatim} +\documentclass[12pt,fullcolor]{wmletterhead} +\end{verbatim} +which produces the output similar to this letter. + + +\closing{Sincerely,} +\end{letter} + +\end{document} +\end |