Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. % !TEX TS-program = xelatexmk
  2. documentclass{article}
  3. usepackage[authordate, backend=biber,
  4. bookpages=false, isbn=false, doi=false, numbermonth=false, cmsdate=both]%
  5. {biblatex-chicago}
  6.  
  7. usepackage{filecontents}
  8. begin{filecontents}{bib.bib}
  9.  
  10. @periodical{test1,
  11. Date = {2018},
  12. Editor = {Editor, Edwin},
  13. % Issuetitle = {This is the Issuetitle},
  14. Journaltitle = {The Journal},
  15. Note = {special issue},
  16. Title = {This is the Issuetitle},
  17. Volume = {33}}
  18.  
  19. @periodical{test2,
  20. Date = {2018},
  21. Editor = {Feditor, Edwin},
  22. Issuetitle = {This is the Issuetitle},
  23. Journaltitle = {The Journal},
  24. Note = {special issue},
  25. % Title = {This is the Issuetitle},
  26. Volume = {33}}
  27.  
  28. @periodical{test3,
  29. Date = {2018},
  30. Editor = {Geditor, Edwin},
  31. Issuetitle = {This is the Issuetitle},
  32. Journaltitle = {The Journal},
  33. Note = {special issue},
  34. Title = {This shouldn't (need to) be the Journaltitle},
  35. Volume = {33}}
  36.  
  37. end{filecontents}
  38. addbibresource{bib.bib}
  39.  
  40. begin{document}
  41. autocite{*}
  42. printbibliography % print the bibliography
  43. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement