Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132928 views
License: OTHER
1
\documentclass[a4paper]{article}
2
\usepackage{geometry}
3
4
\geometry{top=1cm,left=1cm,right=1cm,bottom=2cm}
5
6
% The following is needed in order to make the code compatible
7
% with both latex/dvips and pdflatex.
8
\ifx\pdftexversion\undefined
9
\usepackage[dvips]{graphicx}
10
\else
11
\usepackage[pdftex]{graphicx}
12
\DeclareGraphicsRule{*}{mps}{*}{}
13
\fi
14
15
\pdfinfo{
16
/Author (Martin Thoma)
17
/Title (LittlePraktomat Documentation)
18
/Subject (LittlePraktomat Documentation)
19
/Keywords (LaTeX)
20
}
21
22
\title{LittlePraktomat Documentation}
23
\author{Martin Thoma}
24
25
\begin{document}
26
27
\maketitle
28
29
\section{UML}
30
\includegraphics{meta.1}
31
32
\end{document}
33
34