Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. documentclass{article} %
  2. usepackage[backend=biber,style=authoryear]{biblatex} %
  3.  
  4. usepackage{filecontents}
  5. begin{filecontents}{jobname.bib}
  6. @Book{pollis-schwab79a,
  7. editor = {Pollis, Adamantia and Peter Schwab},
  8. title = {Human Rights: Cultural and Ideological Perspectives},
  9. publisher = {Praeger},
  10. year = {1979}
  11. }
  12. @Article{schwab-meijaard13,
  13. author = {Schwab, Arend L. and Jaap P. Meijaard},
  14. title = {A Review on Bicycle Dynamics and Rider Control},
  15. journal = {Vehicle System Dynamics},
  16. year = {2013},
  17. volume = {51},
  18. pages = {1059--1090}
  19. }
  20. end{filecontents}
  21.  
  22. addbibresource{jobname.bib}
  23.  
  24. begin{document}
  25.  
  26. % textcite{pollis-schwab79a}
  27.  
  28. textcite{schwab-meijaard13}
  29.  
  30. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement