Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. documentclass{memoir}
  2. usepackage{lipsum}
  3.  
  4. usepackage[american]{babel}
  5. usepackage[utf8]{inputenc}
  6. usepackage{csquotes}
  7.  
  8. makeatletter
  9. renewcommand{@chapapp}{Segment}
  10. makeatother
  11.  
  12. usepackage{nameref}
  13.  
  14. usepackage[T1]{fontenc}
  15. usepackage[
  16. backend=biber,
  17. %bibencoding=utf8,
  18. % refsection=chapter,
  19. refsegment=subsection+,
  20. url=false,
  21. sorting=none,
  22. sortcites=true,
  23. sorting=nyt,
  24. style=apa
  25. %style=numeric
  26. ]{biblatex}
  27. % DeclareLanguageMapping{american}{american-apa}
  28.  
  29. makeatletter
  30. %newcommand*{currentname}{@currentlabelname}
  31. makeatother
  32.  
  33.  
  34. % segmented bibliography
  35. defbibheading{subbibliography}{subsection*{References for Segment~ref{refsegment:therefsectiontherefsegment}: nameref{refsegment:therefsectiontherefsegment} }}
  36.  
  37. % DefineBibliographyStrings{english}{%
  38. % references = {Works Cited},
  39. % }
  40.  
  41. addbibresource{biblatex-examples.bib}
  42.  
  43. usepackage[]{hyperref}
  44. hypersetup{
  45. colorlinks=false,
  46. }
  47.  
  48.  
  49. begin{document}
  50.  
  51. author{John Doe}
  52. title{Bla bla}
  53.  
  54. tableofcontents
  55.  
  56. chapter{First, there was light}
  57. % label{chapter1}
  58.  
  59. lipsum[0-1]
  60. Cite an author not previously cited~cite{cicero}.
  61. Note: Alphabetcially, K comes before S.
  62.  
  63. section{A Section}
  64.  
  65. lipsum[0-1]
  66. Cite an author not previously cited~cite{cicero}.
  67. Note: Alphabetcially, K comes before S.
  68.  
  69. chapter{Then, there was a power outage}
  70. % label{chapter2}
  71.  
  72. lipsum[0-1]
  73. And then again cite some authoprs cited previously~cite{kastenholz}.
  74. At vero eos et accusam et justo duo dolores et ea rebum~cite{sigfridsson}.
  75.  
  76. printbibheading
  77. % bibbysection[heading=subbibliography]
  78. bibbysegment[heading=subbibliography]
  79.  
  80. end{document}
  81.  
  82. section{A Section}
  83. newrefsegment
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement