blob: c91efe66faf048e7b383c09a9e30fe872430ea31 (
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
|
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[rm,sfdefault]{roboto}
\usepackage{lipsum}
\begin{document}
\subsection*{Regular}
\lipsum[1]
\subsection*{Italic}
\textit{\lipsum[2]}
\subsection*{Bold}
\textbf{\lipsum[3]}
\subsection*{Bold Italic}
\textbf{\textit{\lipsum[4]}}
\robotocondensed
\subsection*{Condensed Regular}
\lipsum[1]
\subsection*{Condensed Italic}
\textit{\lipsum[2]}
\subsection*{Condensed Bold}
\textbf{\lipsum[3]}
\subsection*{Condensed Bold Italic}
\textbf{\textit{\lipsum[4]}}
\robotoslab
\subsection*{Slab Serif Regular}
\lipsum[1]
\subsection*{Slab Serif Bold}
\textbf{\lipsum[3]}
\end{document}
|