Skip to content

Instantly share code, notes, and snippets.

@EarlOfEgo
Created March 22, 2014 15:44
Show Gist options
  • Save EarlOfEgo/9709240 to your computer and use it in GitHub Desktop.
Save EarlOfEgo/9709240 to your computer and use it in GitHub Desktop.
\documentclass[11pt,a4paper]{report}
\usepackage{graphicx}
\usepackage{a4}
\usepackage[english, ngerman]{babel}
%That Headings have Kapitälchen:
\usepackage[T1]{fontenc}
\usepackage{xcolor}
%%%%%%%%%BIBLIOGRAPHY + PICTURES IN TABLE OF CONTENTS
\usepackage[nottoc]{tocbibind}
\usepackage{breakcites}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%ABKÜRZUNGEN
\usepackage{nomencl}
\let\abbrev\nomenclature
\renewcommand{\nomname}{List of Abbreviations}
\setlength{\nomlabelwidth}{.25\hsize}
\renewcommand{\nomlabel}[1]{#1 \dotfill}
\setlength{\nomitemsep}{-\parsep}
\makenomenclature
\newcommand{\Abkuerzung}{
\printnomenclature
\newpage
}
\begin{document}
\include{cover}
\include{title}
\include{abstract}
\include{affidavit}
\selectlanguage{english}
\tableofcontents
\listoffigures
\renewcommand{\lstlistlistingname}{Listings}
\lstlistoflistings
\addcontentsline{toc}{chapter}{Listings}
\newpage
\addcontentsline{toc}{chapter}{\nomname}
\Abkuerzung
%%% Chapters
\include{Chapters/introduction}
\include{Chapters/overview}
\include{Chapters/migration}
\include{Chapters/analysis}
\include{Chapters/conclusion}
%%%%%%%%%%%%%%%%%%BIBLIOGRAPHY%%%%%%%%%%%%%%%%%%%%%
%\nocite{*}
\bibliography{bibliography}{}
%\bibliographystyle{apalike}
\bibliographystyle{abbrv}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%makeindex thesis.nlo -s nomencl.ist -o thesis.nls
\abbrev{dex}{Dalvik Executable}
\abbrev{XML}{Extensible Markup Language}
\abbrev{VM}{Virtual Machine}
\abbrev{JIT}{Just In Time}
\abbrev{DVM}{Dalvik Virtual Machine}
\abbrev{JVM}{Java Virtual Machine}
\abbrev{APK}{Android Application Package}
\abbrev{IPC}{Inter-process Communication}
\abbrev{SDK}{Software Development Kit}
\abbrev{GUI}{Graphical User Interface}
\abbrev{XML}{Extensible Markup Language}
\abbrev{ADT}{Android Development Tools}
\abbrev{HTML}{Hypertext Markup Language}
\abbrev{ART}{Android Runtime}
\abbrev{DOM}{Document Object Model}
\abbrev{SAX}{Simple API for XML}
\abbrev{API}{Application Programming Interface}
\abbrev{JNI}{Java Native Interface}
%\abbrev{JDK}{Java Development Kit}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment