Skip to content

Instantly share code, notes, and snippets.

@hutt
Last active February 2, 2020 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hutt/b9624cd30a5696b65a5f465475b76b7f to your computer and use it in GitHub Desktop.
Save hutt/b9624cd30a5696b65a5f465475b76b7f to your computer and use it in GitHub Desktop.
Vorlage für Textzusammenfassungen (Harvard-Zitierstil)
\documentclass[a4paper, 11pt]{article}
\usepackage{comment}
\usepackage{blindtext}
\usepackage{fullpage}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
%%=================================================
%% Meta
%%=================================================
\newcommand{\theauthor}{Vorname Nachname}
\newcommand{\thestudentid}{000001}
\newcommand{\thedate}{\today} %statt \today kann hier auch »30. Oktober 2019« oder ein beliebiger anderer String eingetragen werden
%%=================================================
%% Los geht's.
%%=================================================
\begin{document}
\noindent
\large\textbf{Organisationssoziologie} \\
\normalsize\textbf{Textzusammenfassung:} Thema des Textes \\
Vorgelegt von \theauthor, Mat.-Nr. \thestudentid \hfill \thedate\\
\section*{Einleitung}
Fußnoten\footnote{Fußnoten sind super.} können hier auch eingefügt werden. Großartig!
\section*{Hauptteil}
Zitate gehen natürlich auch.\cite{Weber}
\section*{Stichpunkte}
\begin{itemize}
\item item1
\item item2
\end{itemize}
\section*{Fazit}
\blindtext
\begin{thebibliography}{9}
\bibitem{Weber} Weber, Max (1985 [1922]): \emph{Wirtschaft und Gesellschaft. Grundriss der verstehenden Soziologie.} Tübingen: Mohr Siebeck, S. 122-130.
\end{thebibliography}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment