mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
misc
This commit is contained in:
parent
1baaf85a1a
commit
5cdb363103
6 changed files with 71 additions and 2 deletions
7
documents/math-fonts/Makefile
Normal file
7
documents/math-fonts/Makefile
Normal file
|
@ -0,0 +1,7 @@
|
|||
SOURCE = math-fonts
|
||||
make:
|
||||
pdflatex $(SOURCE).tex -output-format=pdf
|
||||
make clean
|
||||
|
||||
clean:
|
||||
rm -rf $(TARGET) *.class *.html *.log *.aux *.out
|
55
documents/math-fonts/math-fonts.tex
Normal file
55
documents/math-fonts/math-fonts.tex
Normal file
|
@ -0,0 +1,55 @@
|
|||
\documentclass{scrartcl}
|
||||
\usepackage{amssymb, amsmath} % needed for math
|
||||
\usepackage[utf8]{inputenc} % this is needed for umlauts
|
||||
\usepackage[ngerman]{babel} % this is needed for umlauts
|
||||
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
|
||||
\usepackage[margin=2.5cm]{geometry} %layout
|
||||
\usepackage{hyperref} % links im text
|
||||
\usepackage{parskip}
|
||||
\usepackage{multicol}
|
||||
|
||||
\title{Minimal distance to a cubic function}
|
||||
\author{Martin Thoma}
|
||||
|
||||
\hypersetup{
|
||||
pdfauthor = {Martin Thoma},
|
||||
pdfkeywords = {},
|
||||
pdftitle = {}
|
||||
}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Begin document %
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\begin{document}
|
||||
\section{mathcal}
|
||||
\begin{multicols}{3}
|
||||
\begin{itemize}
|
||||
\item $\mathcal{A}$
|
||||
\item $\mathcal{B}$
|
||||
\item $\mathcal{C}$
|
||||
\item $\mathcal{D}$
|
||||
\item $\mathcal{E}$
|
||||
\item $\mathcal{F}$
|
||||
\item $\mathcal{G}$
|
||||
\item $\mathcal{H}$
|
||||
\item $\mathcal{I}$
|
||||
\item $\mathcal{J}$
|
||||
\item $\mathcal{K}$
|
||||
\item $\mathcal{L}$
|
||||
\item $\mathcal{M}$
|
||||
\item $\mathcal{N}$
|
||||
\item $\mathcal{O}$
|
||||
\item $\mathcal{P}$
|
||||
\item $\mathcal{Q}$
|
||||
\item $\mathcal{R}$
|
||||
\item $\mathcal{S}$
|
||||
\item $\mathcal{T}$
|
||||
\item $\mathcal{U}$
|
||||
\item $\mathcal{V}$
|
||||
\item $\mathcal{W}$
|
||||
\item $\mathcal{X}$
|
||||
\item $\mathcal{Y}$
|
||||
\item $\mathcal{Z}$
|
||||
\end{itemize}
|
||||
\end{multicols}
|
||||
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue