| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- \documentclass[a7cards,frame]{flashcards}
- \usepackage{etoolbox}
- \usepackage{amsmath,amssymb}% math symbols / fonts
- \usepackage{mathtools} % \xRightarrow
- \usepackage{nicefrac} % \nicefrac
- \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[framed,amsmath,thmmarks,hyperref]{ntheorem}
- \usepackage{framed}
- \usepackage{marvosym}
- \usepackage{makeidx} % for automatically generation of an index
- \usepackage{xcolor}
- \usepackage[bookmarks,bookmarksnumbered,hypertexnames=false,pdfpagelayout=OneColumn,colorlinks,hyperindex=false]{hyperref} % has to be after makeidx
- \usepackage{enumitem} % Better than \usepackage{enumerate}, because it allows to set references
- \usepackage{tabto}
- \usepackage{braket} % needed for \Set
- \usepackage{csquotes} % \enquote{}
- \usepackage{subfig} % multiple figures in one
- \usepackage{parskip} % nicer paragraphs
- \usepackage{xifthen} % \isempty
- \usepackage{changepage} % for the adjustwidth environment
- \usepackage{pst-solides3d}
- \usepackage[colorinlistoftodos]{todonotes}
- \usepackage{pgfplots}
- \pgfplotsset{compat=1.7}
- \usepackage[arrow, matrix, curve]{xy}
- \usepackage{caption} % get newlines within captions
- \usepackage{tikz} % draw
- \usepackage{tikz-3dplot} % draw
- \usepackage{tkz-fct} % draw
- \usepackage{tkz-euclide} % draw
- \usetkzobj{all} % tkz-euclide
- \usetikzlibrary{3d,calc,intersections,er,arrows,positioning,shapes.misc,patterns,fadings,decorations.pathreplacing}
- \usepackage{tqft}
- \usepackage{xspace} % for new commands; decides weather I want to insert a space after the command
- \usepackage[german,nameinlink]{cleveref} % has to be after hyperref, ntheorem, amsthm
- %%
- \newcounter{chapter}
- \newcommand\chapter{\if@openright\cleardoublepage\else\clearpage\fi
- \thispagestyle{plain}%
- \global\@topnum\z@
- \@afterindentfalse
- \secdef\@chapter\@schapter}
- %%
- \usepackage{../shortcuts}
- \hypersetup{
- pdfauthor = {Martin Thoma},
- pdfkeywords = {Geometrie und Topologie},
- pdftitle = {Geometrie und Topologie - Definitionen}
- }
- \allowdisplaybreaks
- \makeatletter
- \renewcommand{\flashcards@ps@back@begin@plain}
- % {\vspace*{\fill}\center\flashcards@format@back}% REMOVED
- {\vspace*{\fill}\flashcards@format@back}% ADDED
- \makeatother
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- % Begin document %
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- \begin{document}
- %CONTENT%
- \end{document}
|