Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. documentclass{article}
  2. usepackage[english]{babel}
  3. usepackage[utf8]{inputenc}
  4.  
  5. usepackage[
  6. backend=biber,
  7. style=alphabetic,
  8. citestyle=chicago-authordate
  9. ]{biblatex}
  10.  
  11. begin{filecontents}{references.bib}
  12. @article{acharya_analysis_2002,
  13. title = "An Analysis of Apples",
  14. author = "Acharya, Alice and Benson, Bob and Carrey, Catalina and Duvet, Dorian",
  15. date = 2002
  16. }
  17. end{filecontents}
  18. addbibresource{references.bib}
  19.  
  20. begin{document}
  21. cite{acharya_analysis_2002} (citedate{acharya_analysis_2002}) found that apples can come in a variety of colors.
  22. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement