Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. documentclass[a4paper,12pt,numbers=endperiod]{scrartcl}
  2. usepackage[utf8]{inputenc}
  3. usepackage[T1]{fontenc}
  4. usepackage[ngerman]{babel}
  5. usepackage{csquotes}
  6. usepackage[backend=biber,style=authoryear]{biblatex}
  7.  
  8. addbibresource{biblatex-examples.bib}
  9.  
  10. DefineBibliographyStrings{ngerman}{references={Bibliographie}}
  11.  
  12. DeclareFieldFormat{editortype}{mkbibparens{#1}}
  13. renewbibmacro*{byeditor+others}{%
  14. ifnameundef{editor}
  15. {}
  16. {printnames[byeditor]{editor}%
  17. setunit{addspace}%
  18. usebibmacro{byeditor+othersstrg}%
  19. clearname{editor}%
  20. newunit}%
  21. usebibmacro{byeditorx}%
  22. usebibmacro{bytranslator+others}}
  23. renewbibmacro*{byeditor+othersstrg}{usebibmacro{editor+othersstrg}}
  24. renewbibmacro*{bytranslator+othersstrg}{usebibmacro{translator+othersstrg}}
  25. renewbibmacro*{bytypestrg}[2]{%
  26. iffieldundef{#1type}
  27. {bibstring{#2}}
  28. {ifbibxstring{thefield{#1type}}
  29. {bibstring{thefield{#1type}}}
  30. {printtext{thefield{#1type}}}}}
  31.  
  32. renewcommand*{multinamedelim}{/}
  33. renewcommand*{finalnamedelim}{multinamedelim}
  34.  
  35. renewcommand*{labelnamepunct}{addcolonspace}
  36. renewcommand*{postnotedelim}{addcolonspace}
  37. DeclareFieldFormat{postnote}{#1}
  38. DeclareFieldFormat{multipostnote}{#1}
  39.  
  40. DeclareFieldFormat{superedition}{textsuperscript{#1}}
  41.  
  42. providecommand*{iflabeldateisdate}{%
  43. ifboolexpr{%
  44. not test {iffieldundef{labeldatesource}}
  45. and
  46. (test {iffieldequalstr{labeldatesource}{}}
  47. or test {iffieldequalstr{labeldatesource}{year}})}}
  48.  
  49. renewbibmacro*{date+extrayear}{%
  50. iffieldundef{labelyear}
  51. {}
  52. {printtext[parens]{%
  53. iflabeldateisdate
  54. {iffieldnum{edition}
  55. {printfield[superedition]{edition}%
  56. globalclearfield{edition}}
  57. {}%
  58. printdateextra}
  59. {printlabeldateextra}}}}
  60.  
  61. renewcommand*{bibpagespunct}{addcolonspace}
  62. DeclareFieldFormat{pages}{#1}
  63.  
  64. DeclareNameAlias{sortname}{family-given}
  65.  
  66.  
  67. begin{document}
  68. nocite{sigfridsson,companion,cotton,iliad,malinowski,
  69. gaonkar:in,westfahl:space,pines,brandt,hyman,kant:kpv}
  70. printbibliography
  71. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement