2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
This commit is contained in:
Martin Thoma 2013-09-12 10:38:11 +02:00
parent b2870f7dce
commit 5d12b1f6ba
3 changed files with 19 additions and 6 deletions

View file

@ -5,7 +5,7 @@
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
\usepackage{pdfpages} % Signatureinbingung und includepdf
\usepackage{geometry} % [margin=2.5cm]layout
\usepackage{hyperref} % links im text
\usepackage[pdftex]{hyperref} % links im text
\usepackage{color}
\usepackage{framed}
\usepackage{enumerate} % for advanced numbering of lists
@ -16,16 +16,28 @@
\usepackage{gauss}
\usepackage{algorithm,algpseudocode}
\usepackage{parskip}
\usepackage{lastpage}
\allowdisplaybreaks
\newcommand{\cmark}{\ding{51}}%
\newcommand{\xmark}{\ding{55}}%
\hypersetup{
pdfauthor = {Martin Thoma},
pdfkeywords = {Numerik,KIT},
pdftitle = {Numerik Klausur1 - Musterlösung}
}
\title{Numerik Klausur1 - Musterlösung}
\makeatletter
\AtBeginDocument{
\hypersetup{
pdfauthor = {Martin Thoma},
pdfkeywords = {Numerik,KIT},
pdftitle = {\@title}
}
\pagestyle{fancy}
\lhead{\@title}
\rhead{Seite \thepage von \pageref{LastPage}}
}
\makeatother
\usepackage{fancyhdr}
\fancyfoot[C]{}
\begin{document}
\include{Aufgabe1}

View file

@ -1,5 +1,6 @@
SOURCE = Klausur1
make:
pdflatex -shell-escape $(SOURCE).tex -output-format=pdf
pdflatex -shell-escape $(SOURCE).tex -output-format=pdf
make clean