Skip to content

Instantly share code, notes, and snippets.

@moewew
Created March 31, 2020 14:26
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 moewew/f54f200adb65399edb6cdad8a7ca2077 to your computer and use it in GitHub Desktop.
Save moewew/f54f200adb65399edb6cdad8a7ca2077 to your computer and use it in GitHub Desktop.
\documentclass[american]{article}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson}
\printbibliography
\end{document}
\documentclass[american]{article}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\begin{filecontents}{\jobname.bib}
@article{paris,
title = {Antisocial and Borderline Personality Disorders: {{Two}} Separate Diagnoses or Two Aspects of the Same Psychopathology?},
shorttitle = {Antisocial and Borderline Personality Disorders},
author = {Paris, Joel},
date = {1997},
journaltitle = {Comprehensive Psychiatry},
volume = {38},
pages = {237--242},
issn = {0010440X},
doi = {10.1016/S0010-440X(97)90032-8},
urldate = {2019-05-18},
langid = {english},
number = {4}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Lorem \autocite{paris}
\printbibliography
\end{document}
\documentclass[american]{article}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=apa, backend=biber]{biblatex}
\begin{filecontents}{\jobname.bib}
@article{paris,
title = {Antisocial and Borderline Personality Disorders: {{Two}} Separate Diagnoses or Two Aspects of the Same Psychopathology?},
shorttitle = {Antisocial and Borderline Personality Disorders},
author = {Paris, Joel},
date = {1997},
journaltitle = {Comprehensive Psychiatry},
volume = {38},
pages = {237--242},
issn = {0010440X},
doi = {10.1016/S0010-440X(97)90032-8},
urldate = {2019-05-18},
langid = {english},
number = {4}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Lorem \autocite{paris}
\printbibliography
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment