Guest User

min-natbib.tex

a guest
Jul 24th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.22 KB | None | 0 0
  1. \documentclass[12pt,parskip=half-,a4paper,twoside=false,bibliography=totocnumbered,version=first,listof=numbered,numbers=noenddot,version=first]{scrreprt}
  2. \usepackage{ifpdf}
  3. \ifpdf
  4. % ENCODING & TRANSLATION
  5. \usepackage[T1]{fontenc}
  6. \usepackage[utf8]{inputenc}
  7. \inputencoding{utf8}
  8. \usepackage[ngerman]{babel}
  9. % BIBLIOGRAPHY & CITATION
  10. \usepackage{hyperref}
  11. \usepackage[nosectionbib]{apacite}
  12. \usepackage{natbib}
  13.  
  14. \listfiles
  15. \usepackage{filecontents}
  16. \begin{filecontents}{literature.bib}
  17. %% This BibTeX bibliography file was created using BibDesk.
  18. %% Saved with string encoding Unicode (UTF-8)
  19. @webpage{McGrane:2014,
  20.    Author = {Sally McGrane},
  21.    Day = {17},
  22.    Lastchecked = {2014-03-23},
  23.    Month = {February},
  24.    Note = {Last checked: 2014-03-23},
  25.    Publisher = {The New Yorker},
  26.    Title = {To the Magic Mountain!},
  27.    Url = {http://www.newyorker.com/books/page-turner/to-the-magic-mountain},
  28.    Year = {2014}}
  29.  
  30. @webpage{ThomasMannArchiv,
  31.    Lastchecked = {2014-06-18},
  32.    Publisher = {Thomas-Mann-Archiv},
  33.    Title = {Das Internationale Sanatorium »Berghof«},
  34.    Url = {http://www.tma.ethz.ch/assets/Uploads/Ueber-uns/Thomas-Sprecher/Dokumente/4.-Das-Internationale-Sanatorium-Berghof.pdf}}
  35.  
  36. @book{Mann:1924,
  37.    Address = {Frankfurt am Main},
  38.    Author = {Thomas Mann},
  39.    Edition = {Gro{\ss}e kommentierte Frankfurter Ausgabe, Band 5.1},
  40.    Editor = {Michael Neumann},
  41.    Publisher = {S. Fischer},
  42.    Title = {Der Zauberberg},
  43.    Year = {2010}}
  44.  
  45. \end{filecontents}
  46.  
  47. \begin{document}
  48.  
  49. %start of text
  50. \chapter{Cites and Footnotes}
  51. \label{citesandfootnotes}
  52.  
  53. Footnote\footnote{~\citep[p 23f]{McGrane:2014}}. Inline cites [e.g.][p. 2]~\citep{Mann:1924} and ~\citep[p 66f]{Mann:1924}. Three cites: author one~\citep{McGrane:2014} and \citet{Mann:1924} and a quote from  \citet{ThomasMannArchiv}:
  54.  
  55. \begin{quote}
  56.  
  57. This is a quote.
  58. \end{quote}
  59.  
  60. \section{Pics and Tables}
  61. \label{picsandtables}
  62.  
  63. \begin{figure}[htbp]
  64. \caption{A diagram}
  65. \label{dia1}
  66. \end{figure}
  67.  
  68. \begin{figure}[htbp]
  69. \caption{A table}
  70. \label{table_tab}
  71. \end{figure}
  72.  
  73. %end of text
  74. \pagebreak
  75. \appendix
  76. \begingroup
  77. \bibliographystyle{mla-custom}
  78. \bibliography{literature}
  79. \listoffigures
  80. \endgroup
  81. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment