\documentclass[12pt,a4paper]{article} \usepackage[latin1]{inputenc} \usepackage[T1]{fontenc} \usepackage[ngerman]{babel} \usepackage{parskip} \usepackage{natbib}% \usepackage{ifthen} \bibliographystyle{munich} \title{munich.bst -- A Name (Year) Bibtex Style \newline --Examples--} \author{Martin Brixner} \date{10. August 2006} \begin{document} % Customized commands***** % Additional commands, not needed but they come in handy if you want to include % page numbers and do not want the whole entry to be put between brackets. %************************* \newcommand{\ct}[2][] {% \citet{#2}% \ifthenelse{\equal{}{#1}}{.}{, S.\,#1.}% } %************************* \newcommand{\fct}[2][] {% \footnote{ \citet{#2}% \ifthenelse{\equal{}{#1}}{.}{, S.\,#1.}% }} %************************* \newcommand{\fctv}[2][] {% \footnote{Vgl.\ % \citet{#2}% \ifthenelse{\equal{}{#1}}{.}{, S.\,#1.}% }} %************************* \maketitle% \newpage% \section*{Examples} Please put the example\_DB.bib in the same directory as this file.\\[0.4cm] \textbf{Native commands} \\[0.2cm] % Book entry I\footnote{\cite{2003_achleitner}.} \\ Command: \verb+\footnote{\cite{2003_achleitner}.}+ \\[0.2cm] % Book entry II\footnote{\cite{2002_Bamberg}.} \\ Command: \verb+\footnote{\cite{2002_Bamberg}.}+ \\[0.2cm] % Incollection entry\footnote{\cite[42-63]{2004_Sartoris}.}\\ Command: \verb+\footnote{\cite[42-63]{2004_Sartoris}.}+ \\[0.2cm] % Article entry\footnote{\cite[74-75]{2005_Heidemann}.} \\ Command: \verb+\footnote{\cite[74-75]{2005_Heidemann}.}+ \\[0.2cm] % Internet entry\footnote{\cite{2006_Dt_Boer}.} \\ Command: \verb+\footnote{\cite{2006_Dt_Boer}.}+ \\[0.4cm] % \textbf{Customized commands} \\[0.2cm] Article entry II \ct[74-75]{2005_Heidemann} \\ Command: \verb+\ct[74-75]{2005_Heidemann} + \\[0.2cm] % Article entry III\fct[74-75]{2005_Heidemann} \\ Command: \verb+\fct[74-75]{2005_Heidemann}+ \\[0.2cm] % Article entry IV\fctv[74-75]{2005_Heidemann} \\ Command: \verb+\fctv[74-75]{2005_Heidemann}+ \\ \newpage \bibliography{example_DB} \end{document}