summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/hagenberg-thesis/examples/Manual
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/hagenberg-thesis/examples/Manual
Initial commit
Diffstat (limited to 'macros/latex/contrib/hagenberg-thesis/examples/Manual')
-rw-r--r--macros/latex/contrib/hagenberg-thesis/examples/Manual/main.pdfbin0 -> 422606 bytes
-rw-r--r--macros/latex/contrib/hagenberg-thesis/examples/Manual/main.tcp12
-rw-r--r--macros/latex/contrib/hagenberg-thesis/examples/Manual/main.tex375
-rw-r--r--macros/latex/contrib/hagenberg-thesis/examples/Manual/references.bib474
4 files changed, 861 insertions, 0 deletions
diff --git a/macros/latex/contrib/hagenberg-thesis/examples/Manual/main.pdf b/macros/latex/contrib/hagenberg-thesis/examples/Manual/main.pdf
new file mode 100644
index 0000000000..0a51646631
--- /dev/null
+++ b/macros/latex/contrib/hagenberg-thesis/examples/Manual/main.pdf
Binary files differ
diff --git a/macros/latex/contrib/hagenberg-thesis/examples/Manual/main.tcp b/macros/latex/contrib/hagenberg-thesis/examples/Manual/main.tcp
new file mode 100644
index 0000000000..122500dfb2
--- /dev/null
+++ b/macros/latex/contrib/hagenberg-thesis/examples/Manual/main.tcp
@@ -0,0 +1,12 @@
+[FormatInfo]
+Type=TeXnicCenterProjectInformation
+Version=4
+
+[ProjectInfo]
+MainFile=main.tex
+UseBibTeX=1
+UseMakeIndex=0
+ActiveProfile=LaTeX(utf8) ⇨ PDF(Sumatra)
+ProjectLanguage=en
+ProjectDialect=US
+
diff --git a/macros/latex/contrib/hagenberg-thesis/examples/Manual/main.tex b/macros/latex/contrib/hagenberg-thesis/examples/Manual/main.tex
new file mode 100644
index 0000000000..f2e744dfc0
--- /dev/null
+++ b/macros/latex/contrib/hagenberg-thesis/examples/Manual/main.tex
@@ -0,0 +1,375 @@
+\documentclass[english]{hgbarticle}
+
+\RequirePackage[utf8]{inputenc} % remove when using lualatex oder xelatex!
+
+
+\title{The \textsf{hagenberg-thesis} Package}
+\date{\hgbDate}
+
+\author{W.\ Burger and W.\ Hochleitner\\[10pt]
+University of Applied Sciences Upper Austria\\
+Department of Digital Media, Hagenberg (Austria)}
+
+%\author{
+%Wilhelm Burger, Wolfgang Hochleitner\\
+%\texttt{wilhelm.burger@fh-ooe.at}
+%\and
+%Wolfgang Hochleitner\\
+%\texttt{wolfgang.hochleitner@fh-ooe.at}}
+
+
+%%%----------------------------------------------------------
+\begin{document}
+%%%----------------------------------------------------------
+\maketitle
+%%%----------------------------------------------------------
+
+\begin{abstract}\noindent
+The \textsf{hagenberg-thesis} package is a collection of modern LaTeX templates for university theses (bachelor,
+master or diploma programs) and related documents.
+This manual describes the main features of this package.
+Pre-configured document templates for English and German manuscripts and a complete
+tutorial are available on the package's home repository.
+\end{abstract}
+
+
+
+\section{Introduction}
+
+The complete source of this package and auxiliary materials are available on
+CTAN\footnote{\url{https://ctan.org/pkg/hagenberg-thesis}}
+and its development repository.\footnote{\url{https://github.com/Digital-Media/HagenbergThesis}}
+The package is made available under the terms of the
+Creative Commons Attribution 4.0 International Public License.%
+\footnote{\url{https://creativecommons.org/licenses/by/4.0/legalcode}}
+
+
+\section{Document classes}
+
+The \texttt{hgb} package provides the following document classes,
+which are based on the standard \latex\ classes
+\texttt{book}, \texttt{report} and \texttt{article}, respectively:
+%
+\begin{itemize}
+\item \textbf{\texttt{hgbthesis}} (\texttt{book}):
+for Bachelor, Master and Diploma theses;
+\item \textbf{\texttt{hgbreport}} (\texttt{report}):
+for project and term reports;
+\item \textbf{\texttt{hgbarticle}} (\texttt{article}):
+for drafting journal articles.
+\end{itemize}
+
+
+
+\subsection{Class options}
+The above document classes accept the following options:
+%
+\begin{raggedright}
+\begin{itemize}
+\item \textbf{\texttt{hgbthesis}}:
+ \texttt{master}, \texttt{diploma}, \texttt{bachelor}, \texttt{praktikum} (deprecated),
+ \texttt{internship}, \texttt{english}, \texttt{german}, \texttt{smartquotes};
+\item \textbf{\texttt{hgbreport}}: \texttt{notitlepage}, \texttt{english}, \texttt{german}, \texttt{smartquotes};
+\item \textbf{\texttt{hgbarticle}}: \texttt{twocolumn}, \texttt{english}, \texttt{german}, \texttt{smartquotes}.
+\end{itemize}
+\end{raggedright}
+%
+For example, to start a Master thesis in German
+one would simply simply place
+%
+\begin{LaTeXCode}[numbers=none]
+\documentclass[master,german,smartquotes]{hgbthesis}
+\end{LaTeXCode}
+%
+at the beginning of the document.
+
+
+
+\subsection{Thesis parameters (class \texttt{hgbthesis})}
+
+\texttt{hgbthesis} supports several types of thesis documents.
+The following parameters must be specified for \emph{all} types:
+%
+\begin{itemize}
+\item \verb!\title{...}!,
+\item \verb!\author{...}!,
+\item \verb!\programname{...}!,
+\item \verb!\placeofstudy{...}!,
+\item \verb!\dateofsubmission{yyyy}{mm}{dd}!.
+\end{itemize}
+%
+\noindent A \emph{Bachelor} thesis requires the following, additional items
+(not relevant for Diploma and Master theses):
+%
+\begin{itemize}
+\item \verb!\thesisnumber{...}!,
+\item \verb!\coursetitle{...}!,
+\item \verb!\semester{...}!,
+\item \verb!\advisor{...}!.
+\end{itemize}
+
+
+
+\section{Style files and user commands}
+
+The package comes with a set of style (\texttt{*.sty}) files that can be used
+independently of the document classes listed above:
+\texttt{hgb.sty},
+\texttt{hgbabbrev.sty},
+\texttt{hgbbib.sty},
+\texttt{hgbheadings.sty},
+\texttt{hgblistings.sty},
+\texttt{hgbmath.sty}.
+
+
+\subsection{General user commands and environments(\texttt{hgb.sty})}
+
+
+\begin{itemize}
+\item \textbf{\texttt{{\bs}hgbDate}}: Outputs the package version date,
+ \eg, ``\texttt{\hgbDate}''.
+\item \verb!\calibrationbox{width}{height}!: Inserts a test box for checking the final print size
+(in millimeters).
+\item \verb!\begin{english} ... \end{english}!
+\item \verb!\begin{german} ... \end{german}!
+\end{itemize}
+
+
+
+\subsection{Text commands (\texttt{hgbabbrev.sty})}
+
+\subsubsection*{Special characters:}
+
+\begin{itemize}
+\item \textbf{\texttt{{\bs}bs}}: Inserts a backslash character (short for \verb!\textbackslash!).
+\item \textbf{\texttt{{\bs}obnh}}: Inserts an optional break with no hyphen (\eg, \verb!PlugIn{\obnh}Filter!).
+\end{itemize}
+
+
+
+\subsubsection*{German abbreviations:}
+
+\begin{itemize}
+\item \textbf{\texttt{{\bs}bzgl}}: bzgl.
+\item \textbf{\texttt{{\bs}bzw}}: bzw.
+\item \textbf{\texttt{{\bs}ca}}: ca.
+\item \textbf{\texttt{{\bs}dah}}: d.\thinspace{}h.
+\item \textbf{\texttt{{\bs}Dah}}: D.\thinspace{}h.
+\item \textbf{\texttt{{\bs}ds}}: d.\thinspace{}sind
+\item \textbf{\texttt{{\bs}etc}}: etc.
+\item \textbf{\texttt{{\bs}evtl}}: evtl.
+\item \textbf{\texttt{{\bs}ia}}: i.\thinspace{}Allg.
+\item \textbf{\texttt{{\bs}sa}}: s.\ auch
+\item \textbf{\texttt{{\bs}so}}: s.\ oben
+\item \textbf{\texttt{{\bs}su}}: s.\ unten
+\item \textbf{\texttt{{\bs}ua}}: u.\thinspace{}a.
+\item \textbf{\texttt{{\bs}Ua}}: U.\thinspace{}a.
+\item \textbf{\texttt{{\bs}uae}}: u.\thinspace{}\"A.
+\item \textbf{\texttt{{\bs}usw}}: usw.
+\item \textbf{\texttt{{\bs}uva}}: u.\thinspace{}v.\thinspace{}a.
+\item \textbf{\texttt{{\bs}uvm}}: u.\thinspace{}v.\thinspace{}m.
+\item \textbf{\texttt{{\bs}va}}: vor allem
+\item \textbf{\texttt{{\bs}vgl}}: vgl.
+\item \textbf{\texttt{{\bs}zB}}: z.\thinspace{}B.
+\item \textbf{\texttt{{\bs}ZB}}: Zum Beispiel
+\end{itemize}
+
+\subsubsection*{English abbreviations:}
+
+\begin{itemize}
+\item \textbf{\texttt{{\bs}ie}}: \ie
+\item \textbf{\texttt{{\bs}eg}}: \eg
+\item \textbf{\texttt{{\bs}etc}}: etc.
+\item \textbf{\texttt{{\bs}Eg}}: \Eg
+\item \textbf{\texttt{{\bs}wrt}}: \wrt
+\end{itemize}
+
+
+\subsection{Bibliography commands (\texttt{hgbbib.sty})}
+
+
+
+\begin{itemize}
+\item
+\textbf{\texttt{{\bs}AddBibFile}}: A wrapper to \texttt{biblatex}'s \verb!\addbibresource! macro
+(for backward compatibility only).
+\item
+\textbf{\texttt{{\bs}MakeBibliography[\emph{options}]}}: Inserts the reference section or chapter.
+By default, references are automatically split into category subsections.%
+\footnote{Predefined reference categories are \texttt{literature}, \texttt{avmedia}, \texttt{online}
+and \texttt{software}.}
+Use the option \texttt{nosplit} to produce a traditional (\ie, contiguous) list of references.
+\item
+\textbf{\texttt{{\bs}citenobr\{\emph{keys}\}}}: Analogous to the standard \texttt{{\bs}cite\{\emph{keys}\}} command, but inserts no ``backref'' page numbers in the bibliography.
+\item
+\textbf{\texttt{{\bs}mcite%
+[\emph{text1}]\{\emph{key1}\}%
+[\emph{text2}]\{\emph{key2}\}%
+\ldots
+[\emph{textN}]\{\emph{keyN}\}%
+}}:
+Analogous to \texttt{bib\-la\-tex}'s \texttt{{\bs}cites} command,%
+\footnote{\url{http://mirrors.ctan.org/macros/latex/contrib/biblatex/doc/biblatex.pdf} (see Sec.~3.8.3)}
+but inserts semicolons between reference entries for better readability.
+\end{itemize}
+
+% \MakeBibliography ... creates a reference section split subsections (default)
+% \MakeBibliography[nosplit] ... creates a one-piece reference section
+
+
+\subsection{Code environments (\texttt{hgblistings.sty})}
+
+The following types of code environments are defined:%
+%
+\begin{itemize}
+\item \textbf{\texttt{CCode}}: for C (ANSI),
+\item \textbf{\texttt{CppCode}}: for C++ (ISO),
+\item \textbf{\texttt{CsCode}}: for C\#,
+\item \textbf{\texttt{CssCode}}: for CSS,
+\item \textbf{\texttt{GenericCode}}: for generic code,
+\item \textbf{\texttt{HtmlCode}}: for HTML,
+\item \textbf{\texttt{JavaCode}}: for Java,
+\item \textbf{\texttt{JsCode}}: for JavaScript,
+\item \textbf{\texttt{LaTeXCode}}: for \latex,
+\item \textbf{\texttt{ObjCCode}}: for ObjectiveC,
+\item \textbf{\texttt{PhpCode}}: for PHP,
+\item \textbf{\texttt{Swift}}: for Swift,
+\item \textbf{\texttt{XmlCode}}: for XML.
+\end{itemize}
+%
+\texttt{hgblistings} is based on the \texttt{listingsutf8}%
+\footnote{\url{https://ctan.org/pkg/listingsutf8}}
+package, thus any valid \texttt{listings}%
+\footnote{\url{https://ctan.org/pkg/listings}}
+option may be used; for example,
+the option \texttt{numbers=none} to suppress line numbers:
+\begin{LaTeXCode}[numbers=none]
+ \begin{JavaCode}[numbers=none]
+ ... // Java code comes here
+ \end{JavaCode}
+\end{LaTeXCode}
+
+
+
+\subsection{Mathematical commands (\texttt{hgbmath.sty})}
+
+\texttt{hgbmath} requires (and automatically loads) the \texttt{amsmath}%
+\footnote{\url{https://ctan.org/pkg/amsmath}}
+package, thus all
+commands and symbols of \texttt{amsmath} are available by default.
+The following \emph{additional} commands can only be used in math mode:
+%
+\begin{itemize}
+\item \textbf{\texttt{{\bs}Cpx}}: $\Cpx$ (complex numbers),
+\item \textbf{\texttt{{\bs}N}}: $\N$ (natural numbers),
+\item \textbf{\texttt{{\bs}R}}: $\R$ (real numbers),
+\item \textbf{\texttt{{\bs}Q}}: $\Q$ (rational numbers),
+\item \textbf{\texttt{{\bs}Z}}: $\Z$ (integer numbers).
+\end{itemize}
+
+
+
+\subsection{Algorithms (\texttt{hgbalgo.sty})}
+
+\texttt{hgbalgo} is a stand-alone package that is based on -- and extends -- the \texttt{algorithmicx} and
+\texttt{algpseudocode} packages.%
+\footnote{\url{https://ctan.org/pkg/algorithmicx}}
+It fixes some (mostly indentation-related) problems, adds color and provides some additional
+commands. It also loads the \texttt{algorithm}%
+\footnote{\url{https://ctan.org/pkg/algorithms}}
+package which defines a compatible float container for algorithms:
+\verb!\begin{algorithm}! \verb!...! \verb!\end{algorithm}!.
+
+
+\paragraph{Additional user commands:}
+\begin{itemize}
+\item
+\textbf{\texttt{{\bs}StateL\{<text>\}}}: Creates a \emph{numbered} statement like \texttt{algorithmicx}'s
+\verb!\State! command but provides consistent indentation on multi-line statements.
+Note that the statement \texttt{<text>} must be passed as a single argument in \verb!{...}! brackets.
+\item
+\textbf{\texttt{{\bs}StateNN[<nesting>]\{<text>\}}}:
+Creates a \emph{non-numbered} statement like \texttt{algorith\-micx}'s \verb!\State!
+command but provides consistent indentation inside nested constructs and over multiple lines.
+The optional integer argument \verb!<nesting>! can be used to specify the \emph{nesting depth}
+to compensate for a bug in \texttt{algorithmicx} (the nesting level inside a block is not set properly before
+the first \verb!\State!). Omitting the optional argument should give correct indentation in most
+cases.
+\item
+\textbf{\texttt{{\bs}Input\{<text>\}}}:
+For describing the input parameters in a procedure's preamble. %Usage: \verb!\Input{<description>}!
+\item
+\textbf{\texttt{{\bs}Output\{<text>\}}}:
+For describing the output values in a procedure's preamble. %Usage: \verb!\Output{<description>}!
+\item
+\textbf{\texttt{{\bs}Returns\{<text>\}}}:
+For describing the return values in a procedure's preamble. %Usage: \verb!\Returns{<description>}!
+\end{itemize}
+
+\paragraph{Defined algorithm colors:}
+\begin{itemize}
+\item[] \textbf{\texttt{AlgKeywordColor}} (for algorithm keywords),
+\item[] \textbf{\texttt{AlgProcedureColor}} (for procedure and function names),
+\item[] \textbf{\texttt{AlgCommentColor}} (for comments).
+\end{itemize}
+The above colors can be redefined at any time (see the \texttt{xcolor}%
+\footnote{\url{https://ctan.org/pkg/xcolor}} package), \eg, by
+\begin{LaTeXCode}[numbers=none]
+ \definecolor{AlgKeywordColor}{named}{black}
+ \definecolor{AlgProcedureColor}{rgb}{0.0, 0.5, 0.0} % dark green
+\end{LaTeXCode}
+
+
+\section{Package dependencies}
+
+\begin{sloppypar}
+The \texttt{hagenberg-thesis} package builds on the following \latex\ packages:\newline
+\texttt{abstract},
+\texttt{algorithm},
+\texttt{algorithmicx},
+\texttt{algpseudocode},
+\texttt{amsbsy},
+\texttt{amsfonts},
+\texttt{amsmath},
+\texttt{amssymb},
+\texttt{babel},
+\texttt{biblatex},
+\texttt{breakurl},
+\texttt{caption},
+\texttt{cmap},
+\texttt{csquotes},
+\texttt{datetime},
+\texttt{enumitem},
+\texttt{epstopdf},
+\texttt{eurosym},
+\texttt{exscale},
+\texttt{fancyhdr},
+\texttt{float},
+\texttt{fontenc},
+\texttt{geometry},
+\texttt{graphicx},
+\texttt{hypcap},
+\texttt{hyperref},
+\texttt{ifpdf},
+\texttt{ifthen},
+\texttt{inputenc},
+\texttt{listingsutf8},
+\texttt{lmodern},
+\texttt{moreverb},
+\texttt{overpic},
+\texttt{pdfpages},
+\texttt{pict2e},
+\texttt{subdepth},
+\texttt{titlesec},
+\texttt{titling},
+\texttt{tocbasic},
+\texttt{url},
+\texttt{upquote},
+\texttt{verbatim},
+\texttt{xcolor},
+\texttt{xifthen},
+\texttt{xspace}.
+\end{sloppypar}
+
+
+\end{document}
diff --git a/macros/latex/contrib/hagenberg-thesis/examples/Manual/references.bib b/macros/latex/contrib/hagenberg-thesis/examples/Manual/references.bib
new file mode 100644
index 0000000000..9b2e6a8b46
--- /dev/null
+++ b/macros/latex/contrib/hagenberg-thesis/examples/Manual/references.bib
@@ -0,0 +1,474 @@
+@thesis{Artner2007,
+ author={Artner, Nicole Maria},
+ title={Analyse und Reimplementierung des Mean-Shift Tracking-Verfahrens},
+ type={Diplomarbeit},
+ year={2007},
+ month={7},
+ institution={University of Applied Sciences Upper Austria, Digitale Medien},
+ location={Hagenberg, Austria},
+ url={http://theses.fh-hagenberg.at/thesis/Artner07},
+ hyphenation={german}
+}
+
+@thesis{Bacher2004,
+ author={Bacher, Florian},
+ title={Interaktionsmöglichkeiten mit Bildschirmen und großflächigen Projektionen},
+ type={Bachelorarbeit},
+ year={2004},
+ month={6},
+ institution={University of Applied Sciences Upper Austria, Medientechnik und {-design}},
+ location={Hagenberg, Austria},
+ hyphenation={german}
+}
+
+@manual{Bezos2018,
+ author={Bezos, Javier and Braams, Johannes L.},
+ title={Babel -- Multilingual support for Plain \TeX\ or \LaTeX},
+ year={2018},
+ month={11},
+ version={3.27},
+ url={http://mirrors.ctan.org/macros/latex/required/babel/base/babel.pdf},
+ hyphenation={english}
+}
+
+@incollection{BurgeBurger1999,
+ author={Burge, Mark and Burger, Wilhelm},
+ title={Ear Biometrics},
+ booktitle={Biometrics: Personal Identification in Networked Society},
+ publisher={Kluwer Academic Publishers},
+ year={1999},
+ location={Boston},
+ editor={Jain, Anil K. and Bolle, Ruud and Pankanti, Sharath},
+ chapter={13},
+ pages={273-285},
+ hyphenation={english}
+}
+
+@inproceedings{Burger1987,
+ author={Burger, Wilhelm and Bhanu, Bir},
+ title={Qualitative Motion Understanding},
+ booktitle={Proceedings of the Intl.\ Joint Conference on Artificial Intelligence},
+ year={1987},
+ month={5},
+ editor={McDermott, John P.},
+ venue={Milano},
+ publisher={Morgan Kaufmann Publishers},
+ location={San Francisco},
+ pages={819-821},
+ hyphenation={english}
+}
+
+@book{BurgerBurge2015,
+ author={Burger, Wilhelm and Burge, Mark James},
+ title={Digitale Bildverarbeitung},
+ subtitle={Eine algorithmische Einführung mit Java},
+ publisher={Springer},
+ location={Heidelberg},
+ edition={3},
+ year={2015},
+ hyphenation={german}
+}
+
+@book{BurgerBurge2016,
+ author={Burger, Wilhelm and Burge, Mark James},
+ title={Digital Image Processing},
+ subtitle={An Algorithmic Introduction Using Java},
+ publisher={Springer},
+ location={London},
+ edition={2},
+ year={2016},
+ hyphenation={english}
+}
+
+@manual{Carlisle2017,
+ author={Carlisle, David P.},
+ title={Packages in the {`graphics'} bundle},
+ year={2017},
+ month={6},
+ url={http://mirrors.ctan.org/macros/latex/required/graphics/grfguide.pdf},
+ hyphenation={english},
+}
+
+@image{CocaCola1940,
+ author={Wolcott, Marion Post},
+ title={Natchez, Miss.},
+ note={Library of Congress Prints and Photographs Division Washington, Farm Security Administration/Office of War Information Color Photographs},
+ year={1940},
+ month={8},
+ url={https://www.loc.gov/pictures/item/2017877479/}
+}
+
+@manual{Cochran2005,
+ author={Cochran, Steven Douglas},
+ title={The {Subfig} Package},
+ year={2005},
+ month={7},
+ url={http://mirrors.ctan.org/macros/latex/contrib/subfig/subfig.pdf},
+ hyphenation={english}
+}
+
+@manual{Daniel2018,
+ author={Daniel, Marco and Gundlach, Patrick and Schmidt, Walter and Knappen, Jörg and Partl, Hubert and Hyna, Irene},
+ title={\LaTeX2e-Kurzbeschreibung},
+ year={2018},
+ month={4},
+ version={3.0c},
+ url={http://mirrors.ctan.org/info/lshort/german/l2kurz.pdf},
+ hyphenation={german}
+}
+
+@techreport{Drake1948,
+ author={Drake, Hubert M. and McLaughlin, Milton D. and Goodman, Harold R.},
+ title={Results obtained during accelerated transonic tests of the {Bell}
+ {XS-1} airplane in flights to a {MACH} number of 0.92},
+ institution={NASA Dryden Flight Research Center},
+ year={1948},
+ month={1},
+ location={Edwards, CA},
+ number={NACA-RM-L8A05A},
+ url={https://www.nasa.gov/centers/dryden/pdf/87528main_RM-L8A05A.pdf},
+ hyphenation={english}
+}
+
+@book{Duden1997,
+ author={Friedrich, Christoph},
+ title={Schriftliche Arbeiten im technisch-natur\-wissen\-schaft\-lichen Studium},
+ subtitle={Ein Leitfaden zur effektiven Erstellung und zum Einsatz moderner Arbeitsmethoden},
+ publisher={Bibliographisches Institut},
+ series={Duden Taschenbücher},
+ volume={27},
+ location={Mannheim},
+ year={1997},
+ hyphenation={german}
+}
+
+@thesis{Eberl1987,
+ author={Eberl, Gerhard},
+ title={Automatischer Landeanflug durch Rechnersehen},
+ type={phdthesis},
+ year={1987},
+ month={8},
+ institution={Universität der Bundeswehr, Fakultät für Raum- und Luftfahrttechnik},
+ location={München},
+ hyphenation={german}
+}
+
+@misc{EuRichtlinie2000,
+ author={{Europäische Union}},
+ title={Richtline 2000/14/EG des Europäischen Parlaments und des Rates vom 8.\ Mai 2000 zur
+ Angleichung der Rechtsvorschriften der Mitgliedstaaten über umweltbelastende Geräuschemissionen
+ von zur Verwendung im Freien vorgesehenen Geräten und Maschinen},
+ howpublished={Amtsblatt der Europäischen Gemeinschaften, L 162},
+ url={https://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=CONSLEG:2000L0014:20051227:de:PDF},
+ hyphenation={german}
+}
+
+@book{Faires1934,
+ author={Faires, V. M.},
+ title={Design of Machine Elements},
+ publisher={The Macmillan Company},
+ year={1934},
+ note={Originalausgabe 1920},
+ hyphenation={english}
+}
+
+@online{Feder2006,
+ author={Feder, Alexander},
+ title={{BibTeX.org}},
+ year={2006},
+ url={http://www.bibtex.org/},
+}
+
+@misc{FhStG1993,
+ title={Bundesgesetz über Fachhochschul-Studiengänge},
+ howpublished={BGBl.\ Nr.\ 340/1993, zuletzt geändert mit Bundesgesetz BGBl.\ I Nr.\ 45/2014},
+ url={https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=Bundesnormen&Gesetzesnummer=10009895},
+ hyphenation={german}
+}
+
+@video{Futurama1999,
+ author={Groening, Matt},
+ title={Futurama},
+ titleaddon={Season 1 Collection},
+ howpublished={DVD},
+ year={2002},
+ month={2},
+ note={Twentieth Century Fox Home Entertainment},
+ hyphenation={english}
+}
+
+@article{Guttman2001,
+ author={Guttman, Erik},
+ title={Autoconfiguration for {IP} Networking},
+ journal={IEEE Internet Computing},
+ volume={5},
+ issue={5/6},
+ year={2001},
+ pages={81-86},
+ hyphenation={english}
+}
+
+@book{Hemleben1969,
+ author={Hemleben, Johannes},
+ title={Galilei, Galileo},
+ publisher={rororo},
+ year={1969},
+ edition={20},
+ hyphenation={german}
+}
+
+@book{Higham1998,
+ author={Higham, Nicholas J.},
+ title={Handbook of Writing for the Mathematical Sciences},
+ publisher={Society for Industrial and Applied Mathematics (SIAM)},
+ location={Philadelphia},
+ edition={2},
+ year={1998},
+ url={https://www.maths.manchester.ac.uk/~higham/hwms/},
+ hyphenation={english}
+}
+
+@video{HistoryOfComputers2008,
+ title={History of Computers},
+ year={2008},
+ month={9},
+ url={https://www.youtube.com/watch?v=LvKxJ3bQRKE},
+ hyphenation={english}
+}
+
+@misc{Hough1962,
+ author={Hough, Paul V. C.},
+ title={Method and means for recognizing complex patterns},
+ howpublished={US Patent 3,069,654},
+ year={1962},
+ month={12},
+ url={https://patents.google.com/patent/US3069654}
+}
+
+@online{IBM360,
+ author={IBM},
+ title={System 360},
+ subtitle={From Computers to Computer Systems},
+ url={https://www.ibm.com/ibm/history/ibm100/us/en/icons/system360/impacts/}
+}
+
+@book{Kopka2003,
+ author={Kopka, Helmut and Daly, Patrick William},
+ title={A Guide to \LaTeX},
+ series={Tools and Techniques for Computer Typesetting},
+ publisher={Addison-Wesley},
+ location={Reading, MA},
+ year={2003},
+ edition={4},
+ hyphenation={english}
+}
+
+@book{Lamport1994,
+ author={Lamport, Leslie},
+ title={{LaTeX}, A Document Preparation System},
+ subtitle={User's Guide and Reference Manual},
+ publisher={Addison-Wesley},
+ location={Reading, MA},
+ year={1994},
+ edition={2},
+ hyphenation={english}
+}
+
+@book{Lamport1995,
+ author={Lamport, Leslie},
+ title={Das {LaTeX}-Handbuch},
+ publisher={Addison-Wesley},
+ location={Reading, MA},
+ year={1995},
+ edition={3},
+ hyphenation={german}
+}
+
+@software{LegendOfZelda1998,
+ author={Miyamoto, Shigeru and Aonuma, Eiji and Koizumi, Yoshiaki},
+ title={The Legend of Zelda: Ocarina of Time},
+ howpublished={N64-Spielmodul},
+ publisher={Nintendo},
+ year={1998},
+ hyphenation={english}
+}
+
+@manual{Lehman2018,
+ author={Lehman, Philipp and Kime, Philip and Wemheuer, Moritz and Boruvka, Audrey and Wright, Joseph},
+ title={The \texttt{biblatex} Package},
+ subtitle={Programmable Bibliographies and Citations},
+ year={2018},
+ month={10},
+ version={3.12},
+ url={http://mirrors.ctan.org/macros/latex/contrib/biblatex/doc/biblatex.pdf},
+ hyphenation={english}
+}
+
+@article{Mermin1989,
+ author={Mermin, Nathaniel David},
+ title={What's wrong with these equations?},
+ journal={Physics Today},
+ volume={42},
+ number={10},
+ year={1989},
+ pages={9-11},
+ hyphenation={english}
+}
+
+@manual{Mittelbach2018,
+ author={Mittelbach, Frank and Schöpf, Rainer and Downes, Michael and Jones, David M. and Carlisle, David},
+ title={The \texttt{amsmath} package},
+ year={2018},
+ month={12},
+ version={2.17b},
+ url={http://mirrors.ctan.org/macros/latex/required/amsmath/amsmath.pdf},
+ hyphenation={english}
+}
+
+@movie{Nosferatu1922,
+ title={Nosferatu -- A Symphony of Horrors},
+ howpublished={Film},
+ year={1922},
+ note={Drehbuch/Regie: F.\ W.\ Murnau. Mit Max Schreck, Gustav von Wangenheim, Greta Schröder.},
+ hyphenation={english}
+}
+
+@manual{Oetiker2018,
+ author={Oetiker, Tobias and Partl, Hubert and Hyna, Irene and Schlegl, Elisabeth},
+ title={The Not So Short Introduction to \LaTeXe},
+ subtitle={Or \LaTeXe in 139 minutes},
+ year={2018},
+ month={2},
+ version={6.2},
+ url={http://mirrors.ctan.org/info/lshort/english/lshort.pdf},
+ hypenation={english}
+}
+
+@misc{OoeRaumordnungsgesetz1994,
+ title={Oberösterreichisches Raumordnungsgesetz 1994},
+ howpublished={LGBl 1994/114 idF 1995/93},
+ url={https://www.ris.bka.gv.at/Dokumente/Landesnormen/LOO40007538/LOO40007538.pdf},
+ hyphenation={german}
+}
+
+@manual{Oostrum2019,
+ author={Oostrum, {Piet van}},
+ title={The \textrm{fancyhdr} and \textrm{extramarks} packages},
+ year={2019},
+ month={1},
+ version={3.10},
+ url={http://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf},
+ hyphenation={english}
+}
+
+@manual{Pakin2017,
+ author={Pakin, Scott},
+ title={The Comprehensive {LaTeX} Symbol List},
+ year={2017},
+ month={1},
+ url={http://mirrors.ctan.org/info/symbols/comprehensive/symbols-a4.pdf},
+ hyphenation={english}
+}
+
+@manual{Patashnik1988,
+ author={Patashnik, Oren},
+ title={{BiBTeXing}},
+ year={1988},
+ month={2},
+ url={http://mirrors.ctan.org/biblio/bibtex/base/btxdoc.pdf},
+ hyphenation={english}
+}
+
+@patent{Pike2008,
+ author={Pike, Dion},
+ title={Master-slave communications system and method for a network element},
+ type={US Patent},
+ holder={Alcatel-Lucent SAS},
+ number={7,460,482},
+ year={2008},
+ month={12},
+ url={https://patents.google.com/patent/US7460482}
+}
+
+@movie{Psycho1960,
+ title={Psycho},
+ howpublished={Film},
+ year={1960},
+ note={Regie: Alfred Hitchcock,
+ Drehbuch: Joseph Stefano.
+ Nach dem Roman von Robert Bloch.
+ Mit Anthony Perkins, Vera Miles, Janet Leigh.},
+ hyphenation={english}
+}
+
+@manual{Raichle1998,
+ author={Raichle, Bernd},
+ title={Kurzbeschreibung {german.sty} und {ngerman.sty}},
+ year={1998},
+ month={7},
+ version={2.5e},
+ url={http://mirrors.ctan.org/language/german/gerdoc.pdf},
+ hyphenation={german}
+}
+
+@book{Sedgewick2011,
+ author={Sedgewick, Robert and Wayne, Kevin},
+ title={Algorithms},
+ publisher={Addison-Wesley},
+ location={Reading, MA},
+ year={2011},
+ edition={4},
+ hyphenation={english}
+}
+
+@manual{Sommerfeldt2011,
+ author={Sommerfeldt, Axel},
+ title={Anpassen der Abbildungs- und Tabellenbeschriftungen},
+ year={2011},
+ month={11},
+ url={http://mirrors.ctan.org/macros/latex/contrib/caption/caption-deu.pdf},
+ hyphenation={german}
+}
+
+@software{SpringFramework,
+ title={Spring Framework},
+ url={https://github.com/spring-projects/spring-framework},
+ hyphenation={english}
+}
+
+@manual{Voss2014,
+ author={Voß, Herbert},
+ title={Math mode},
+ year={2014},
+ month={1},
+ version={2.47},
+ url={http://mirrors.ctan.org/obsolete/info/math/voss/mathmode/Mathmode.pdf},
+ hyphenation={english}
+}
+
+@standard{W3C2018HTML53,
+ author={{World Wide Web Consortium}},
+ title={HTML 5.3},
+ titleaddon={W3C Working Draft},
+ date={2018-10-18},
+ url={https://www.w3.org/TR/html53/},
+ hyphenation={english}
+}
+
+@online{WikiReliquienschrein2018,
+ url={https://de.wikipedia.org/wiki/Reliquienschrein},
+ title={Reliquienschrein},
+ year={2018},
+ month={9},
+ urldate={2019-02-28}
+}
+
+@audio{Zappa1995,
+ author={Zappa, Frank},
+ title={Freak Out},
+ howpublished={Audio-CD},
+ year={1995},
+ month={5},
+ note={Rykodisc, New York},
+ hyphenation={english}
+}