Guest User

Untitled

a guest
Nov 20th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. documentclass[11pt]{article}
  2. usepackage{cite}
  3. usepackage{filecontents}
  4. begin{filecontents}{mybib.bib}
  5. @misc{ Nobody06,
  6. author = "Nobody Jr",
  7. title = "My Article",
  8. year = "2006" }
  9. @article{cite1,
  10. author = {Knuth, Donald},
  11. title = {{Title One}},
  12. journal = {Some Journal},
  13. year = {2005},
  14. volume = {1},
  15. pages = {1--42},
  16. }
  17. @book{cite2,
  18. author = {Knuth, Donald},
  19. title = {{A Way More Important Title}},
  20. publisher = {Oxford},
  21. year = {2009},
  22. address = {New York}
  23. }
  24. end{filecontents}
  25. begin{document}
  26. Blablabla says: It is a test ~cite{Nobody06} or cite{cite1}.
  27. bibliography{mybib}
  28. bibliographystyle{siam}%{acm}
  29. end{document}
Add Comment
Please, Sign In to add comment