Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. @Article{john_doe,
  2. author = {{Doe}, J.},
  3. title = "{it John's Doe book}",
  4. journal = {Book or journal},
  5. year = {2014},
  6. volume = "{bf 1}",
  7. pages = {5--10},
  8. }
  9.  
  10. @Article{foo_bar,
  11. author = {{Bar}, F.},
  12. title = "{it Bar, bar book}",
  13. journal = {Book or journal},
  14. year = {2014},
  15. volume = "{bf 1}",
  16. pages = {5--10},
  17. }
  18.  
  19. documentclass[12pt]{report}
  20. usepackage{natbib}
  21.  
  22. begin{document}
  23.  
  24. Some text here citep[cited by][]{john_doe}, and some other text by cite{foo_bar}.
  25.  
  26. bibliographystyle{unsrt}
  27. bibliography{ex}{}
  28.  
  29. end{document}
  30.  
  31. documentclass[12pt]{report}
  32. usepackage{natbib}
  33.  
  34. begin{document}
  35.  
  36. Some text here citep[cited by][]{foo_bar}, and some other text by cite{john_doe}.
  37.  
  38. bibliographystyle{unsrt}
  39. bibliography{ex}{}
  40.  
  41. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement