Skip to content

Instantly share code, notes, and snippets.

@retorquere
Created November 16, 2015 10:39
Show Gist options
  • Save retorquere/572a0f8c1d63e46670a1 to your computer and use it in GitHub Desktop.
Save retorquere/572a0f8c1d63e46670a1 to your computer and use it in GitHub Desktop.
\documentclass[american]{article}
\usepackage[american]{babel}
\usepackage[autostyle]{csquotes}%
\usepackage[backend=biber, style=apa]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
%\usepackage{fontspec}
%\setmainfont{Linux Libertine}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{a,
author = {Doe, John},
year = {2015},
title = "Why Is Apple Launching a New Version of the {{iPod}}?"
}
@article{b,
author = {Doe, John},
year = {2015},
title = "Why Is {{Apple}} Launching a New Version of the {{iPod}}?"
}
@article{c,
author = {Doe, John},
year = {2015},
title = "Why is {{Apple}} launching a new version of the {{iPod}}?"
}
\end{filecontents}
%
\addbibresource{\jobname.bib}
\begin{document}
\cite{a}
\cite{b}
\cite{c}
\printbibliography
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment