Guest User

Untitled

a guest
Oct 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. documentclass[12pt]{article}
  2. usepackage[english]{babel}
  3. usepackage[utf8]{inputenc}
  4.  
  5.  
  6. usepackage[
  7. backend = biber,
  8. style = apa,
  9. defernumbers=false,
  10. uniquelist=true]{biblatex}
  11. DeclareLanguageMapping{english}{american-apa}
  12.  
  13. usepackage{xpatch}
  14.  
  15. AtEveryCitekey{ifciteseen{}{clearfield{namehash}}}
  16.  
  17. xpatchbibmacro{cite}
  18. {printnames{labelname}}
  19. {ifciteseen
  20. {printnames{labelname}}
  21. {printnames[][1-99]{labelname}}}
  22. {}
  23. {}
  24.  
  25. xpatchbibmacro{textcite}
  26. {printnames{labelname}}
  27. {ifciteseen
  28. {printnames{labelname}}
  29. {printnames[][1-99]{labelname}}}
  30. {}
  31. {}
  32.  
  33.  
  34. addbibresource{dummy_lit.bib} %name of the .bib file with my references
  35.  
  36. begin{document}
  37.  
  38. I would like to have the abbreviation "et. al" in the running text whenever the references have more than three authors and not this:
  39.  
  40. textcite{Author2000}
  41.  
  42.  
  43. end{document}
  44.  
  45. @Article{Author2000,
  46. author = {Last name1, Firstname 1 and Last name2, First name2 and Last name3, First name3 and Last name4, First name4 and Last name5, First name5},
  47. title = {The title of my article},
  48. journal = {The journal},
  49. year = {2000},
  50. volume = {1},
  51. number = {2},
  52. pages = {1-10},
  53. keywords = {ref}
  54. }
Add Comment
Please, Sign In to add comment