Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. documentclass{scrreprt}
  2. usepackage[main=ngerman, english]{babel}
  3. usepackage[babel, german=quotes]{csquotes}
  4. usepackage[ngerman]{isodate}
  5. usepackage[ngerman]{datetime}
  6. %----------------------------------------------------------------------------
  7. % BIB
  8. %----------------------------------------------------------------------------
  9. usepackage[
  10. backend=biber,
  11. style=authoryear,
  12. sorting=nyvt,
  13. maxnames=25,
  14. dashed=false,
  15. isbn=false
  16. ]{biblatex}
  17. addbibresource{library.bib}
  18. renewcommand{mkbibnamefamily}[1]{textsc{#1}}
  19. renewcommand{labelnamepunct}{addcolonspace}
  20. DeclareFieldFormat{postnote}{#1}
  21. DeclareFieldFormat{multipostnote}{#1}
  22. renewcommandpostnotedelim{addcolonaddspace}
  23. DeclareFieldFormat
  24. [article,inbook,incollection,inproceedings,patent,unpublished]
  25. {title}{#1isdot}
  26. DeclareFieldFormat
  27. [thesis]
  28. {title}{mkbibemph{#1}isdot} % thesis title italic
  29.  
  30.  
  31. % no period after addon titles
  32. usepackage{xpatch}
  33. DeclareFieldFormat{titleaddon}{mkbibbrackets{#1}}
  34. DeclareDelimFormat{titleaddondelim}{addspace}
  35. xpatchbibmacro{title}
  36. {printfield{titleaddon}}
  37. {setunit{printdelim{titleaddondelim}}%
  38. printfield{titleaddon}}
  39. {}
  40. {}
  41. DeclareFieldFormat{booktitleaddon}{mkbibbrackets{#1}}
  42. DeclareDelimFormat{booktitleaddondelim}{addspace}
  43. xpatchbibmacro{booktitle}
  44. {printfield{booktitleaddon}}
  45. {setunit{printdelim{titleaddondelim}}%
  46. printfield{booktitleaddon}}
  47. {}
  48. {}
  49. DeclareFieldFormat{maintitleaddon}{mkbibbrackets{#1}}
  50. DeclareDelimFormat{maintitleaddondelim}{addspace}
  51. xpatchbibmacro{maintitle}
  52. {printfield{maintitleaddon}}
  53. {setunit{printdelim{titleaddondelim}}%
  54. printfield{maintitleaddon}}
  55. {}
  56. {}
  57.  
  58. begin{document}
  59. nocite{*}
  60. printbibliography[heading=bibintoc,title={Literaturverzeichnis}]
  61. end{document}
  62.  
  63. @article{journal.1981,
  64. journal = {University Shimbun},
  65. institution = {Test Institution},
  66. year = {1981},
  67. pages = {20},
  68. location = {Kanagawa},
  69. note = {Morgenausgabe},
  70. title = {University Paper Title}
  71. }
  72.  
  73. @article{journalb.1981,
  74. journal = {University Shimbun},
  75. organization = {Test Organization},
  76. year = {1981},
  77. pages = {20},
  78. location = {Kanagawa},
  79. note = {Morgenausgabe},
  80. title = {University Paper Title}
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement