tex :add bibliography
This commit is contained in:
parent
5a206bd5d7
commit
41908fb402
4 changed files with 19 additions and 4 deletions
|
@ -34,4 +34,5 @@ trouver un argument solide sur pk on a choisi ce projet
|
|||
Install the necessary tools with `sudo apt-get install texlive-full`.
|
||||
|
||||
Navigate to `latex` directory and then run `pdflatex main.tex`. The output pdf
|
||||
should be at `main.pdf`.
|
||||
should be at `main.pdf`. You may want to run `biber main` first, to compile the
|
||||
bibliography.
|
||||
|
|
10
latex/bibliography.bib
Normal file
10
latex/bibliography.bib
Normal file
|
@ -0,0 +1,10 @@
|
|||
@book{hofri:1987,
|
||||
author = {Hofri, M.},
|
||||
title = {Probabilistic Analysis of Algorithms: On Computing Methodologies for
|
||||
Computer Algorithms Performance Evaluation},
|
||||
year = {1987},
|
||||
isbn = {0387965785},
|
||||
publisher = {Springer-Verlag},
|
||||
address = {Berlin, Heidelberg},
|
||||
}
|
||||
|
|
@ -33,6 +33,7 @@ and performance, both in resource consumption and in box usage.
|
|||
\section{Bin packing use cases}
|
||||
|
||||
|
||||
\cite{hofri:1987}
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,9 +19,10 @@
|
|||
\usepackage{minitoc}
|
||||
\usepackage{pdfpages}
|
||||
|
||||
\usepackage{biblatex}
|
||||
\usepackage[style=iso-alphabetic]{biblatex}
|
||||
\addbibresource{bibliography.bib}
|
||||
|
||||
|
||||
\input{advanced.params/tikz.conf}
|
||||
\input{advanced.params/misc.commands}
|
||||
\input{cover/covermain.tex}
|
||||
|
@ -51,8 +52,10 @@
|
|||
\include{content}
|
||||
|
||||
|
||||
%\addcontentsline{toc}{section}{Bibliography}
|
||||
%\printbibliography
|
||||
% BIBLIOGRAPHIE
|
||||
\addcontentsline{toc}{section}{Bibliography}
|
||||
\printbibliography[title={Bibliography}]
|
||||
|
||||
|
||||
|
||||
% TABLE DES ANNEXES
|
||||
|
|
Loading…
Reference in a new issue