Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. documentclass{article}
  2.  
  3. usepackage[citestyle=authoryear, bibstyle=alphabetic, natbib, backend=bibtex]{biblatex}
  4. usepackage{filecontents}
  5.  
  6. begin{filecontents}{jobname.bib}
  7. @misc{whatever,
  8. author = {Author, A.},
  9. year = {2001},
  10. title = {Testing the effects of biblatex styles on bibliography formatting},
  11. }
  12.  
  13. end{filecontents}
  14.  
  15. addbibresource{jobname.bib}
  16.  
  17. begin{document}
  18. citep{whatever}
  19. printbibliography
  20.  
  21. end{document}
  22.  
  23. FUNCTION {makelabel:alpha:year} {
  24. dateyear purify
  25. #1 #4 substring$
  26. #1 #4 substring$
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement