ich bin dabei eine Arbeit zu schreiben, der vollständige Kopf meines Dokumentes mit Beispielsatz sieht folgendermaßen aus:
Code: Alles auswählen
\documentclass[12pt,a4paper, twoside]{article}
\usepackage[left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[utf8]{inputenc}
\usepackage{tocstyle}
\renewcommand{\thesection}{\arabic{section}.}
\renewcommand{\thesubsection}{\thesection\arabic{subsection}.}
\renewcommand{\thesubsubsection}{\thesubsection\arabic{subsubsection}.}
\newtocstyle[KOMAlike][leaders]{alldotted}{}
\usetocstyle{alldotted}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead [LE] {\nouppercase{\slshape \large \leftmark}}
\fancyhead [RO] {\nouppercase{\slshape \large \leftmark}}
\fancyfoot{}
\fancyfoot [LE, RO]{\thepage}
\usepackage[labelfont={bf,sf},font={small}, labelsep=period]{caption}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{textgreek}
\usepackage{textcomp}
\usepackage{longtable}
\usepackage[british]{babel}
\usepackage{graphicx}
\usepackage{float}
\usepackage[super, comma, numbers, square, sort]{natbib}
\usepackage{acronym}
\usepackage[onehalfspacing]{setspace}
\usepackage{chngcntr}
\counterwithin{figure}{section}
\counterwithin{table}{section}
\counterwithin{equation}{section}
\renewcommand{\thefigure}{\thesection\arabic{figure}}
\renewcommand{\thetable}{\thesection\arabic{table}}
\renewcommand{\theequation}{\thesection\arabic{equation}}
\usepackage[T1]{fontenc}
\usepackage{fp}
\usepackage{tikz}
\usepackage{xcolor}
\usepackage{paralist}
\usepackage{subcaption}
\usepackage{hyperref}
\usepackage{natbib}
\setcounter{tocdepth}{4}
\bibliographystyle{achemso}
\begin{document}
Dies ist mein Text. \cite{Mes08}
\newpage
\bibliography{PhD_Endnote_Library}
\end{document}
Dazu habe ich gefunden, dass man
Code: Alles auswählen
\usepackage{natbib}
\cite{Mes08}
Code: Alles auswählen
\usepackage[numbers,square]{natbib}
\cite[p. 329]{Mes08}
Danke schon mal im Voraus!