Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96168
License: OTHER
1
\documentclass{xetex-letter}
2
3
% Minion Pro is used as the main font, if you don't
4
% have it installed uncomment this line or choose another pretty font
5
\setmainfont[Numbers=OldStyle]{Minion Pro}
6
7
% senders personal data
8
\def \first {Isac}
9
\def \last {Asimov}
10
\def \street {Random St. 21}
11
\def \city {9873 New York}
12
13
% recipient
14
\def \recipientHighlight {Human Resources}
15
\def \recipientRest {Some Company Ltd. \\ Some Street 123 \\ 12345 Some City}
16
17
% just for the blindtext
18
\usepackage{lipsum}
19
20
\usepackage{polyglossia}
21
\setmainlanguage{english}
22
23
\begin{document}
24
25
% to show the folding marks
26
\foldingmarks
27
28
\letterstart
29
30
\salutation{Dear Sir or Madam,}
31
32
\lipsum[1-2]
33
34
\closing{Sincerely yours,}
35
\enclosure[Attached]{curriculum vit\ae{}}
36
37
\letterend
38
39
\end{document}
40
41