Advertisement
Guest User

Untitled

a guest
May 29th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. RequirePackage{filecontents}
  2. begin{filecontents}{mybib.bib}
  3. @preamble { " providecommandnoopsort[1]{} " }
  4. @misc{x1,
  5. author = "noopsort{ZZZZ}Anonymous",
  6. title = "Random thoughts",
  7. year = 3001,
  8. }
  9. @misc{x2,
  10. author = "Author, Annie E. ",
  11. title = "Deep thoughts",
  12. year = 3002,
  13. }
  14. @misc{x3,
  15. author = "noopsort{ZZZZ}Anonymous",
  16. title = "Further thoughts",
  17. year = 3003,
  18. }
  19. @misc{x4,
  20. author = "noopsort{ZZZZ}Anonymous",
  21. title = "Final thoughts",
  22. year = 3003,
  23. }
  24. end{filecontents}
  25.  
  26. documentclass{article}
  27. bibliographystyle{plain}
  28.  
  29. begin{document}
  30. cite{x1}, cite{x2}, cite{x4}, cite{x3}
  31. bibliography{mybib}
  32. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement