1 %%% Bibliography (literature used as a source)
3 %%% We employ bibTeX to construct the bibliography. It processes
4 %%% citations in the text (e.g., the \cite{...} macro) and looks up
5 %%% relevant entries in the bibliography.bib file.
7 %%% The \bibliographystyle command selects, which style will be used
8 %%% for references from the text. The argument in curly brackets is
9 %%% the name of the corresponding style file (*.bst). Both styles
10 %%% mentioned in this template are included in LaTeX distributions.
12 \bibliographystyle{plainnat} %% Author (year)
13 % \bibliographystyle{unsrt} %% [number]
15 \renewcommand{\bibname}{Bibliography}
17 %%% Generate the bibliography. Beware that if you cited no works,
18 %%% the empty list will be omitted completely.
20 \bibliography{bibliography}
22 %%% If case you prefer to write the bibliography manually (without bibTeX),
23 %%% you can use the following. Please follow the ISO 690 standard and
24 %%% citation conventions of your field of research.
26 % \begin{thebibliography}{99}
29 % {\sc Lamport,} Leslie.
30 % \emph{\LaTeX: A Document Preparation System}.
32 % Massachusetts: Addison Wesley, 1994.
35 % \end{thebibliography}