Last active
April 15, 2020 12:30
-
-
Save RenatoUtsch/da4aad59ea4416fa00bd5ec009eff0ea to your computer and use it in GitHub Desktop.
Modern barebones template for LuaLaTeX and BibLaTeX
This file contains hidden or 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
\documentclass[12pt]{article} | |
% Encoding | |
\usepackage{fontspec} | |
\usepackage{polyglossia} | |
\usepackage{csquotes} | |
\setdefaultlanguage{english} | |
% Formatting | |
\usepackage{fullpage} | |
\usepackage[final]{microtype} | |
% References | |
\usepackage{biblatex} | |
\addbibresource{refs.bib} | |
% Other | |
\usepackage{hyperref} | |
\begin{document} | |
\printbibliography | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment