Advertisement
Guest User

citations.tex

a guest
Mar 20th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.85 KB | None | 0 0
  1. \documentclass{article}
  2. \begin{filecontents}{citations.bib}
  3.  @article{jones1976,
  4.     title = {A Very Important Article},
  5.     subtitle = {Surveying Stuff from Then till Now},
  6.     author = {\textsc{Jones}, Alice F. AND \textsc{Smith}, John A.},
  7.     location = {New York},
  8.     publisher = {University Publisher},
  9.     date = {2015},
  10.  }
  11. \end{filecontents}
  12. \usepackage{lipsum}
  13.  
  14. \usepackage[%
  15.   backend=bibtex,%
  16.   style=authoryear,%
  17.   citetracker=true,%
  18.   maxcitenames=2,%
  19.   giveninits=false,%
  20.   maxbibnames=99,%
  21.   dashed=false,%
  22.   isbn=false,%
  23.   url=false,%
  24.   urldate=comp,%
  25.   natbib=true%
  26. ]{biblatex}
  27. \bibliography{citations}
  28.  
  29. \usepackage{fontspec}
  30. \defaultfontfeatures{Ligatures={Required, Common, Contextual, TeX}}
  31. \setmainfont{FreeSerif}
  32.  
  33. \begin{document}
  34.  Testing \autocite{jones1976}.
  35.  
  36.  \printbibliography
  37. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement