-
-
Save gonzafernan/3a04272fbb10959c74a3723d12ab2c42 to your computer and use it in GitHub Desktop.
Bibliografía en LaTex con Biblatex y biber
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
biber example_doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@book{example, % example is a tag | |
author="Fernández, Gonzalo Gabriel", | |
title="Exaple Book", | |
year="2018" | |
publisher="GitHub" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\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