Skip to content

Instantly share code, notes, and snippets.

Created February 20, 2017 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/59292e9b8aa1d214fa75cc27107a8add to your computer and use it in GitHub Desktop.
Save anonymous/59292e9b8aa1d214fa75cc27107a8add to your computer and use it in GitHub Desktop.
% !TEX root = pwd/main.tex
\documentclass{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{mybib.bib}
\begin{document}
\section{Hey}\label{sec:one}
Awesome work made by \cite{small}.
\section{You}
But \cite{big} is better.
\printbibliography
\end{document}
% a sample bibliography file
%
@article{small,
author = {Freely, I.P.},
title = {A small paper},
journal = {The journal of small papers},
year = 1997,
volume = {-1},
note = {to appear},
}
@article{big,
author = {Jass, Hugh},
title = {A big paper},
journal = {The journal of big papers},
year = 7991,
volume = {MCMXCVII},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment