Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. documentclass{memoir}
  2. usepackage[authordate,backend=biber]{biblatex-chicago}
  3.  
  4. addbibresource{jobname.bib}
  5. usepackage{filecontents}
  6.  
  7. begin{filecontents*}{jobname.bib}
  8.  
  9. @book { snellgrove1959,
  10. author = {David Snellgrove},
  11. year = {1959},
  12. title = {The Hevajra Tantra: A Critical Study, Part 2},
  13. subtitle = {Sanskrit and Tibetan Texts},
  14. location = {Oxford},
  15. publisher = {Oxford University Press},
  16. }
  17.  
  18. @inbook { snellgrove1960, %Changed it to 1960 for the sake of the order.
  19. author = {David Snellgrove},
  20. year = {1960},
  21. booktitle = {The Hevajra Tantra},
  22. booksubtitle = {A Critical Study},
  23. volume = {2},
  24. %subtitle = {Sanskrit and Tibetan Texts}, %subtitle is not printed if there's no title
  25. title = {Sanskrit and Tibetan Texts},
  26. location = {Oxford},
  27. publisher = {Oxford University Press},
  28. }
  29.  
  30. end{filecontents*}
  31.  
  32. begin{document}
  33. nocite{*}
  34. printbibliography
  35. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement