blob: 8824890bc4738b8f33bae5f79d157063af294576 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
\documentclass{article}
\usepackage{lipsum}
\usepackage{junicodevf}
\begin{document}
\begin{center}
\huge{\jExp JunicodeVF}
\end{center}
\section*{Regular}
\lipsum[1]
\section*{Italic}
\textit{\lipsum[2]}
\section*{Small Caps Regular}
\textsc{\lipsum[5]}
\section*{Small Caps Italic}
\textsc{\textit{\lipsum[6]}}
\section*{Bold}
\textbf{\lipsum[3]}
\section*{Bold Italic}
\textbf{\emph{\lipsum[4]}}
\section*{Small Caps Bold}
\textbf{\textsc{\lipsum[5]}}
\section*{Small Caps Bold Italic}
\textbf{\textsc{\textit{\lipsum[6]}}}
\section*{Default Numbers}
1234567890
\section*{Oldstyle Numbers}
{\addfontfeatures{Numbers=OldStyle}1234567890}
\section*{Lining Numbers}
{\addfontfeatures{Numbers=Lining}1234567890}
\section*{Tabular Numbers}
{\addfontfeatures{Numbers=Tabular}1234567890}
\section*{Proportional Numbers}
{\addfontfeatures{Numbers=Proportional}1234567890}
\section*{Superior Numbers}
X{\addfontfeatures{VerticalPosition=Superior}1234567890}
\section*{Inferior Numbers}
X{\addfontfeatures{VerticalPosition=Inferior}1234567890}
\section*{Light}
{\jLight\lipsum[1]}
\section*{Medium}
{\jMedium\lipsum[2]}
\section*{Semibold}
{\jSmbold\lipsum[3]}
\section*{Condensed}
{\jCond\lipsum[7]}
\section*{Condensed Italic}
{\jCondItalic\lipsum[8]}
\section*{Semicondensed}
{\jSmCond\lipsum[9]}
\section*{Semicondensed Italic}
{\jSmCondItalic\lipsum[9]}
\section*{Expanded}
{\jExp\lipsum[10]}
\section*{Expanded Italic}
{\jExpItalic\lipsum[11]}
\section*{Semiexpanded}
{\jSmExp\lipsum[12]}
\section*{Semiexpanded Italic}
{\jSmExpItalic\lipsum[12]}
\end{document}
|