Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. Text with citation [CD] and this [OBB]
  2.  
  3. Bibliography:
  4. [ CD ] Some text
  5. [ OBB ] Some text
  6.  
  7. documentclass{scrartcl}
  8.  
  9. usepackage[backend=biber,style=alphabetic,maxbibnames=1,maxcitenames=1,defernumbers,%
  10. doi=false,isbn=false,clearlang=false,backref=false]{biblatex}
  11. DeclareFieldFormat{labelalpha}{textsc{#1}}
  12.  
  13. begin{filecontents}{bib.bib}
  14. @ONLINE{text:source,
  15. author={B. Obby},
  16. title={Sources today},
  17. url={http://www.example.com},
  18. urldate={2017-02-20},}
  19. @ONLINE{text:src,
  20. author={Cicero, Marcus Tullius and Doe, John},
  21. title={Sources tomorrow},
  22. url={http://www.example.com},
  23. urldate={2017-02-20},}
  24. end{filecontents}
  25.  
  26. bibliography{bib}
  27. nocite{*}
  28.  
  29. begin{document}
  30.  
  31. Text with citation and no extended spacing: autocite{text:src}\
  32. Text witch citation and ordinary spacing: autocite{text:source}
  33.  
  34. printbibliography
  35.  
  36. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement