summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/munich/example_munich_Bibtex_style.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-08-14 23:02:56 +0000
committerKarl Berry <karl@freefriends.org>2006-08-14 23:02:56 +0000
commite4fbc549355ed2057326cf7c0a4cf111971c4d24 (patch)
tree8f0abc4de3bc5d62256ed2f9e00a625ef11e5c95 /Master/texmf-dist/doc/latex/munich/example_munich_Bibtex_style.tex
parent186b7afe6ad5783e819d1b2a7bec5095e8ff33db (diff)
new bst package munich (14aug06)
git-svn-id: svn://tug.org/texlive/trunk@1960 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/munich/example_munich_Bibtex_style.tex')
-rw-r--r--Master/texmf-dist/doc/latex/munich/example_munich_Bibtex_style.tex81
1 files changed, 81 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/munich/example_munich_Bibtex_style.tex b/Master/texmf-dist/doc/latex/munich/example_munich_Bibtex_style.tex
new file mode 100644
index 00000000000..df5161c9785
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/munich/example_munich_Bibtex_style.tex
@@ -0,0 +1,81 @@
+\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}