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
|
\documentclass[
a4paper,
12pt,
twoside,
titlepage,
BCOR10mm,
openright,
parskip,
headsepline,
headinclude,
footsepline,
chapterprefix,
]{scrbook}
\usepackage[colorlinks]{hyperref}
\usepackage{xcolor}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{fullpage}
\usepackage[multiple]{footmisc}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\newcommand{\colortext}[2]{\begingroup\color{#1}#2\endgroup}
\newcommand{\bulletline}{\newline \centerline{$ \bullet\quad \bullet\quad \bullet $} \newline}
\newcommand{\smallfrac}[2]{\textstyle{\frac #1 #2}}
\newcommand{\menuitem}[1]{\fcolorbox{black}{lightgray}{$#1$}}
\newcommand{\menuchoice}[2]{\fcolorbox{black}{lightgray}{$#1$} $\rightarrow$ \fcolorbox{black}{lightgray}{$#2$}}
\newcommand{\rmb}{right mouse button click}
\begin{document}
\frontmatter
\begin{titlepage}
\centering
\textbf{\Huge{LabPlot}}\\
\vspace{3cm}
\LARGE{KDE-application for interactive graphing and analysis of scientific data}\\
\vspace{2cm}
\Large{2017}
\end{titlepage}
\tableofcontents
\mainmatter
\include{introduction}
\include{using}
\include{tutorials}
\include{advanced_tutorials}
\include{qa}
\appendix
\include{reference}
\backmatter
\end{document}
|