1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
\documentclass[a4paper]{article}
\usepackage{geometry}
\geometry{
includeheadfoot,
margin=2.54cm
}
\usepackage{makeidx}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{float}
\usepackage{alltt}
\usepackage{newtxtext, newtxmath}
% newtxtext loads textcomp only in newer versions and with differing options between versions
% @commands need to be enclosed by makeatletter and makeatother
\makeatletter
\@ifpackageloaded{textcomp}
{} % do nothing if loaded by the previous package to avoid option clashes
{\usepackage{textcomp}} % otherwise load the package
\makeatother
\ifx\pdfoutput\undefined
\usepackage[ps2pdf,
pagebackref=true,
colorlinks=true,
linkcolor=blue
]{hyperref}
\usepackage{pspicture}
\else
\usepackage[pdftex,
pagebackref=true,
colorlinks=true,
linkcolor=blue
]{hyperref}
\fi
\usepackage{doxygen}
\makeindex
\renewcommand{\footrulewidth}{0.4pt}
\newcommand{\+}{\discretionary{\mbox{\scriptsize$\hookleftarrow$}}{}{}}
\setlength\parindent{0pt} % switch of indent
\renewcommand{\thesubsection}{\arabic{subsection}} % Is needed for the correct toc (since doxygen transforms section to subsection otherwise.
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{4}
\begin{document}
\begin{titlepage}
\vspace*{7cm}
\begin{center}
{\Large OpenMS Tutorial\\[1ex]\large Version: @CF_OPENMS_PACKAGE_VERSION_FULLSTRING@ }\\
\end{center}
\end{titlepage}
\pagenumbering{arabic}
\tableofcontents
\pagebreak
\input{tutorial}
\end{document}
|