Skip to content

Instantly share code, notes, and snippets.

@gonzafernan
Last active December 6, 2018 17:53
Show Gist options
  • Save gonzafernan/3a04272fbb10959c74a3723d12ab2c42 to your computer and use it in GitHub Desktop.
Save gonzafernan/3a04272fbb10959c74a3723d12ab2c42 to your computer and use it in GitHub Desktop.
Bibliografía en LaTex con Biblatex y biber
biber example_doc
@book{example, % example is a tag
author="Fernández, Gonzalo Gabriel",
title="Exaple Book",
year="2018"
publisher="GitHub"
}
\usepackage[backend=biber]{biblatex}
\addbibresource{bibfile.bib}
\begin{document}
"This is an example!", \textcite{example}. % example is the tag name in your .bib file
\printbibliography
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment