2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/size/size.tex
Martin Thoma 7740f0147f Remove trailing spaces
The commands

find . -type f -name '*.md' -exec sed --in-place 's/[[:space:]]\+$//' {} \+

and

find . -type f -name '*.tex' -exec sed --in-place 's/[[:space:]]\+$//' {} \+

were used to do so.
2015-10-14 14:25:34 +02:00

32 lines
836 B
TeX

\documentclass[a5paper]{book}
\usepackage{amsmath}
\makeindex
\begin{document}
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam
nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
erat,
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea
rebum.
\noindent \tiny tiny
\scriptsize scriptsize
\footnotesize footnotesize
\small small
\normalsize normalsize \\
\large large
\Large Large
\LARGE LARGE
\huge huge
\Huge Huge\\
\\
\normalsize
\noindent
scriptscriptstyle: $\scriptscriptstyle \lim_{n \rightarrow \infty} (1 + \frac{1}{n})^n$ \\
scriptstyle: $\scriptstyle \lim_{n \rightarrow \infty} (1 + \frac{1}{n})^n$ \\
textstyle: $\textstyle \lim_{n \rightarrow \infty} (1 + \frac{1}{n})^n$ \\
displaystyle: $\displaystyle \lim_{n \rightarrow \infty} (1 + \frac{1}{n})^n$ \\
\end{document}