summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/munich/example_munich_Bibtex_style.tex
blob: df5161c978559ed51d9ed02caa6af547713ac67e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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}