blob: e398b33bd76b4cffbde862475ab38889234ca419 (
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
|
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{coelacanth}
\newcommand{\Section}[1]{\section*{\scshape#1}}
\renewcommand{\,}{\kern0.2ex}
\usepackage{lipsum}
\begin{document}
\begin{center}\huge
\textsc{C\,o\,e\,l\,a\,c\,a\,n\,t\,h}\\[0.5ex]
\end{center}
\Section{Regular}
\lipsum[1]
\Section{Italic}
\textit{\lipsum[2]}
\Section{Bold}
\textbf{\lipsum[3]}
\Section{Small Caps}
\textsc{\lipsum[5]}
\Section{Default Numbers}
1234567890
\Section{Oldstyle Numbers}
\oldstylenums{1234567890}
\Section{Lining Numbers}
\liningnums{1234567890}
\Section{Tabular Numbers}
\tabularnums{1234567890}
\Section{Proportional Numbers}
\proportionalnums{1234567890}
\end{document}
|