Guest User

Untitled

a guest
Apr 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. % !TeX program=lualatex
  2. documentclass{scrartcl}
  3.  
  4. usepackage{fontspec}
  5.  
  6. usepackage[style=authoryear-comp,backend=biber]{biblatex}
  7.  
  8. usepackage[main=ngerman,english]{babel}
  9.  
  10. usepackage{filecontents}
  11.  
  12. begin{filecontents}{jobname.bib}
  13. @Article{john1980,
  14. author = {M. John},
  15. title = {A new view on the wheel},
  16. journal = {Proceedings in Transportation},
  17. year = {1980},
  18. }
  19. @Article{john1981,
  20. author = {M. John and J. Mary},
  21. title = {A new view on the wheel II},
  22. journal = {Proceedings in Transportation},
  23. year = {1981},
  24. }
  25. end{filecontents}
  26.  
  27. addbibresource{jobname.bib}
  28.  
  29. begin{document}
  30. textcite{john1980,john1981}
  31. printbibliography
  32.  
  33. end{document}
Add Comment
Please, Sign In to add comment