reorganizing the repository
[project-aon.git] / common / pdf / build / lw / setup_test / font-test.tex
1 \documentclass{article}
2 \usepackage{ifthen}
3 \usepackage{xltxtra}
4 \setmainfont[Ligatures=TeX]{ITC Souvenir Std Light}
5 \makeatletter
6 \newcommand{\showfont}{encoding: \f@encoding{},
7   family: \f@family{},
8   series: \f@series{},
9   shape: \f@shape{},
10   size: \f@size{}
11 }
12 \newcommand{\iffont}[3]{\ifthenelse{\equal{\f@family}{#1}}{#2}{#3}}
13 \makeatother
14 \begin{document}
15 We are using this font: \showfont
16
17 This is normal text.
18
19 \em{This is emphasised text}
20
21 \bf{This is bold text}
22
23 We switch to Helvetica now:
24
25 \renewcommand{\familydefault}{\sfdefault} \normalfont
26
27 We are using this font: \showfont
28
29 This is normal text.
30
31 \em{This is emphasised text}
32
33 \bf{This is bold text}
34
35
36
37 \end{document}
38