Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. { s nameptr "{f.~}{vv~}{ll}{, jj}" format.name$ 't :=
  2.  
  3. { s nameptr "{vv~}{ll}{, jj}{, f.}" format.name$ 't :=
  4.  
  5. RequirePackage{filecontents}
  6. begin{filecontents}{mybib.bib}
  7. @misc{ab:3001,
  8. author = "Anna Adele Author and Brenda Betsy Buthor",
  9. title = "Initial thoughts",
  10. year = 3001,
  11. }
  12. @misc{abc:3002,
  13. author = "Anna Adele Author and Brenda Betsy Buthor and Carla Christina Cuthor",
  14. title = "Additional thoughts",
  15. year = 3002,
  16. }
  17. end{filecontents}
  18.  
  19. documentclass{article}
  20. usepackage{natbib}
  21. bibliographystyle{abbrvnat-mod}
  22.  
  23. begin{document}
  24. nocite{*}
  25. bibliography{mybib}
  26. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement