blob: d4508270631d2412f03f7eb32f8fb159b8ff00df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
% tryoands.tex Test OandS fonts
\documentclass{article}
\usepackage{oands}
\newcommand{\OANDS}{` z}
\title{Try OandS Fonts}
\author{Peter Wilson}
\date{}
\begin{document}
\maketitle
This provides a short test of the characters in the Odds and Sods font
--- the \verb|oands| font family.
\begin{center}
The font in Large size \\
{\oandsfamily\Large \OANDS}
\end{center}
\begin{center}
The font --- \textoands{\OANDS} --- in its normal size \\
%% \textoands{\OANDS} \\
and the Computer Modern Roman --- {\OANDS} --- for comparison \\
%% \OANDS
\end{center}
\begin{center}
The font --- \textoands{\textit{\OANDS}} --- in its normal size and italic \\
%%\textoands{\textit{\OANDS}} \\
and the Computer Modern Roman --- \textit{\OANDS} --- for comparison \\
%%\textit{\OANDS}
\end{center}
\begin{table}
\centering
\caption{Characters and commands}
\begin{tabular}{|c|l|c|} \hline
Symbol & Name & Command \\ \hline
\textoands{`} & Mirrored right quote & ` \\
\textoands{z} & Glottal stop & z \\
\hline
\end{tabular}
\end{table}
This is the end of the test file.
\end{document}
|