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/math-fonts/math-fonts.tex

121 lines
2.9 KiB
TeX
Raw Normal View History

2013-11-26 23:02:06 +01:00
\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}
2013-11-29 21:47:59 +01:00
\usepackage{enumitem}
2013-11-26 23:02:06 +01:00
\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}
2013-11-29 21:47:59 +01:00
\begin{enumerate}[label=\Alph*:]
2013-11-26 23:02:06 +01:00
\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}$
2013-11-29 21:47:59 +01:00
\end{enumerate}
\end{multicols}
\section{mathfrak}
\begin{multicols}{3}
\begin{enumerate}[label=\Alph*:]
\item $\mathfrak{A}$
\item $\mathfrak{B}$
\item $\mathfrak{C}$
\item $\mathfrak{D}$
\item $\mathfrak{E}$
\item $\mathfrak{F}$
\item $\mathfrak{G}$
\item $\mathfrak{H}$
\item $\mathfrak{I}$
\item $\mathfrak{J}$
\item $\mathfrak{K}$
\item $\mathfrak{L}$
\item $\mathfrak{M}$
\item $\mathfrak{N}$
\item $\mathfrak{O}$
\item $\mathfrak{P}$
\item $\mathfrak{Q}$
\item $\mathfrak{R}$
\item $\mathfrak{S}$
\item $\mathfrak{T}$
\item $\mathfrak{U}$
\item $\mathfrak{V}$
\item $\mathfrak{W}$
\item $\mathfrak{X}$
\item $\mathfrak{Y}$
\item $\mathfrak{Z}$
\end{enumerate}
\end{multicols}
\section{mathbb}
\begin{multicols}{3}
\begin{enumerate}[label=\Alph*:]
\item $\mathbb{A}$
\item $\mathbb{B}$
\item $\mathbb{C}$
\item $\mathbb{D}$
\item $\mathbb{E}$
\item $\mathbb{F}$
\item $\mathbb{G}$
\item $\mathbb{H}$
\item $\mathbb{I}$
\item $\mathbb{J}$
\item $\mathbb{K}$
\item $\mathbb{L}$
\item $\mathbb{M}$
\item $\mathbb{N}$
\item $\mathbb{O}$
\item $\mathbb{P}$
\item $\mathbb{Q}$
\item $\mathbb{R}$
\item $\mathbb{S}$
\item $\mathbb{T}$
\item $\mathbb{U}$
\item $\mathbb{V}$
\item $\mathbb{W}$
\item $\mathbb{X}$
\item $\mathbb{Y}$
\item $\mathbb{Z}$
\end{enumerate}
2013-11-26 23:02:06 +01:00
\end{multicols}
\end{document}