% Article example, with a bibliography % Uses BibLaTeX and Biber % Article, A4 format , font size 11pt \documentclass[11pt,a4paper,french]{article} % Package used for the language managment. Implies XeLaTeX \usepackage{polyglossia} % Sets the default language \setdefaultlanguage{french} % URL and link management. Mandatory for Vancouver \usepackage{hyperref} \usepackage{csquotes} % Uses modern font (better rendering) \usepackage{lmodern} % Sets the encoding of the output file \usepackage[T1]{fontenc} \usepackage[style=authoryear, backend=biber]{biblatex} % Declares the bibliographic database file \addbibresource{references-exercice.bib} \author{Dimitri Donzé, Vincent Hubert, Igor Milhit} \title{Notre pseudo-article} \begin{document} \maketitle \section{Introduction} Dans ce pseudo-travail, nous prétendons introduire notre sujet, comme la littérature le conseille généralement. Une bonne introduction annonce aux lecteurs et lectrices un certain nombre d'éléments indispensables au sujet de l'article qu'elles et ils vont lire, comme le suggèrent . \section{Première partie} Dans \emph{cette première partie}, nous pouvons afficher la citation suivante. \begin{quote} The results showed that different reference managers require different levels of effort, and users generally prefer the tools that involve less effort. We also found that although reference managers share similar features, differences in presentation and organization matter. We conclude this work by providing a set of guidelines for both users and developers of reference managers. \end{quote} \newpage % Print the bibliography %\printbibliography \end{document}