LaTeX
Hier sind einige LaTeX-Vorlagen, die ich in Studien- und Diplomarbeiten verwendet habe. Sie wurden unter MiKTeX für Windows im TeXnicCenter angefertigt.

* Diplomarbeit - Vorlage
* Beispieldatei für Vorlage
* MakeIndex-Datei erstellen (Beispieldatei)
* Eigene MakeIndex-Datei verwenden
* BibTeX-Datei erstellen (Beispieldatei)
* Eigene BibTeX-Datei verwenden
* Kreatives Inhaltsverzeichnis



Diplomarbeit - Vorlage
 
\documentclass[12pt,a4paper,BCOR15mm,DIV13,headinclude,footexclude]{scrartcl}
\usepackage{ngerman}
\usepackage[latin1]{inputenc}
\usepackage{color}
\usepackage{makeidx}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{floatflt}
\usepackage{subfigure}
\usepackage[linkcolor=red, citecolor=red, urlcolor=red]{hyperref}
\makeindex

\hypersetup
       pdfauthor={Katrin Weinel},
       pdftitle={Entwicklung einer Software zur Simulation seriell angeschlossener Motorsteuerung},
       pdfsubject={Diplomarbeit},
       pdfproducer={MiKTeX},
       pdfview=FitV,     % FitH
       pdfstartview=FitV,
       linkcolor=blue,   % Für Links in der gleichen Seite
       pagecolor=blue,     % Für Links auf andere Seiten
       urlcolor=blue,   % Für Links auf URL's
       breaklinks=true,   % Links dürfen umgebrochen werden
       colorlinks=true,
       citebordercolor=0 0 0,  % Farbe für \cite
       filebordercolor=0 0 0,
       linkbordercolor=0 0 0,
       menubordercolor=0 0 0,
       pagebordercolor=0 0 0,
       urlbordercolor=0 0 0,
       pdfhighlight=/I,
       pdfborder=0 0 0,   % keine Box um die Links!
       backref=false,
       pagebackref=false,
       bookmarks=false,
       bookmarksopen=true,
       bookmarksnumbered=false
  }

\title{Diplom}
\author{Katrin Weinel}

\setcounter{secnumdepth}{5}   % wichtig damit die Kapitel gut durchnummeriert sind!
\setcounter{tocdepth}{5}

\pagestyle{fancy}
\renewcommand{\figurename}{Abb.}   % Abbildungen werden mit Abb. abgekürzt
\renewcommand{\tablename}{Tab.}   % Tabellen werden mit Tab. abgekürzt
\renewcommand{\headrulewidth}{0.3pt}
\renewcommand{\footrulewidth}{0.3pt}
\renewcommand{\baselinestretch}{1.2}
\newcommand{\sectionmarkwo}{\sectionmark}
\renewcommand{\sectionmarkwo}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markboth{\thesection.\ #1}{}}
\renewcommand{\thefigure}{\thesection.\arabic{figure}}
\renewcommand{\thetable}{\thesection.\arabic{table}}
% Jede Section, die mit \nsection{titel} angefangen wird, bekommt eine neue
% Abbildungs- und Tabellennummerierung: 5.1, 5.2, 6.1, ...
\newcommand{\nsection}[1]{\section{#1}\setcounter{figure}{0}\setcounter{table}{0}}

\cfoot{}
% Beschriftung der Kopf- und Fußzeilen
\fancyhead[R]{\leftmark\slshape}
\fancyhead[L]{Diplomarbeit}
\fancyfoot[R]{\thepage{}}
\fancyfoot[L]{Katrin Weinel}
\makeatother

% Eigene Farbe definieren
\definecolor{xfarbe}{rgb}{0.9,0.0,0.0}
\newcommand{\xfarbe}[1] {\textcolor{xfarbe}{#1}}

% Kommando setzt ein Bild in eine Box, mit Beschriftung und Label
\newcommand{\bild}[4]{\par
  \begin{figure}[ht]
    \begin{center}
      \mbox{\includegraphics[width=#2\textwidth]{#1}}
      \caption{#3}
      \label{#4}
    \end{center}
  \end{figure}
\par}

% Kommando setzt ein Fließbild, rechts ist ok
\newcommand{\floatbild}[6]{\par
  \begin{floatingfigure}[#3]{#4mm}
      \mbox{\includegraphics[width=#2\textwidth]{#1}}
      \caption{#5}
      \label{fig:#6}
  \end{floatingfigure}
\par}

% Grafische Darstellung von C++
\newcommand{\cpp}{{\large C}\hbox{\kern.05em\raise.25ex%
   \hbox{\scriptsize+\kern-.01em+}\kern.05em}\spacefactor=1000 }

% Definierte Silbentrennung
\hyphenation{Null-mo-dem-ka-bel}

\includeonly{DiplomVorwort,DiplomEhrenwoertlich,DiplomAufgabe,
                   DiplomErgebnisse,DiplomLiteratur}

\begin{document}
%\onehalfspacing  % anderthalbzeilig

\thispagestyle{empty}
\begin{titlepage}
  \pdfbookmark[1]{Titelseite}{}
  \begin{center}
    \Large{Entwicklung von Software zur Simulation seriell angeschlossener Motorsteuerungen}\\
    \vspace{2cm}
    \Huge \textbf{Diplomarbeit}\\
    \small an der \\
    \normalsize Berufsakademie Berlin\\
            - Staatliche Studienakademie -\\
    \vspace{1.6cm}
        ~~~~\mbox{\includegraphics[width=0.6\textwidth]{Bilder/Titel}}
    \newline
    \small vorgelegt von \\
    \large Katrin Weinel \\
    \normalsize Studienjahr: 1999
  \end{center}
  \normalsize
  \vfill
  \begin{tabular}{p{4cm}l}
  \hline \\
  \end{tabular} \\
  \begin{tabular}{ll}
  Eingereicht am:&        3. Juli 2002 \\
  Ausbildungsbetrieb: &  Hahn-Meitner-Institut Berlin GmbH\\
  Betreuer       &  Herr Dipl. Ing. (BA) Lutz Rossa\\
            &  Herr Prof. Dr. Michael Greiff
  \end{tabular}
\end{titlepage}

\pagenumbering{Roman}

{\small \pdfbookmark[1]{\contentsname}{toc}}
\tableofcontents{}

\newpage{}
{\small \listoffigures{}}{\small \par}
\addcontentsline{toc}{section}{Abbildungsverzeichnis}
{\small \listoftables{}}{\small \par}
\addcontentsline{toc}{section}{Tabellenverzeichnis}

\newpage{}
\include{DiplomVorwort}
\pagenumbering{arabic}

\include{DiplomAufgabe}
% Alle weiteren Kapitel (Grundlagen, Vorüberlegungen, Umsetzung, ...)
\include{DiplomErgebnisse}

\appendix
%\cite{Fraba} \cite{slo-syn} ja, hier cities!

\newpage{}
\section {Glossar}
\begin{description}
\input{DiplomGlossar}
\end{description}

\newpage{}
\nocite{*}
\addcontentsline{toc}{section}{Literatur}\label{literatur}
\bibliographystyle{Diplom} 
\bibliography{DiplomLiteratur} 

%************* Jetzt folgt ein Stichwortverzeichnis************************
\renewcommand{\indexname}{Stichwortverzeichnis}
\addcontentsline{toc}{section}{Stichwortverzeichnis}
\renewcommand{\seename}{s.}

\printindex 
\include{DiplomEhrenwoertlich}
\end{document} 



Beispieldatei für Vorlage
 
\nsection{Vorüberlegungen}

\subsection{Aufbau}
\subsubsection{Dialoge} \label{dialoge}\index{Dialog}

Wie bereits in Kapitel \ref{visualc++} 
Ein einfach zu bedienendes Programm ...
\floatbild{Bilder/Dialogfenster}{0.3}{r}{52}{Dialogfenster}{dialogfenster}
\bild{Bilder/TimerThreads}{1.0}{Timer und Threads}{timerthreads}

\begin{table}[htpb]
  \begin{center}
    \begin{tabular}{|p{2cm}|p{11cm}|}
     \hline
     m\_a& Membervariable als Array (Feld)\\
    m\_b& Membervariable vom Typ Bool\\
    \hline
  \end{tabular}
   \caption{Namenskonvention}
   \label{namenskonvention}
   \index{Namenskonvention}
  \end{center}
\end{table} 

\begin{figure}[ht]
   \begin{minipage}{0.60\linewidth}
     Zu dem ...
   \end{minipage}
  \begin{minipage}{0.39\linewidth}
    \begin{center}
        \includegraphics[width=0.8\linewidth]{Bilder/Funktionspanel}
        \caption{Funktionspanel}
        \label{funktionspanel}
    \end{center}
   \end{minipage}
\end{figure}

\begin{figure}[hbtp]
    \mbox{
      \subfigure[Graycodescheibe]
      {
        \includegraphics[height=48mm]{Bilder/Graycodescheibe}
      }
      \subfigure[Aufbau]
      {
        \includegraphics[height=48mm]{Bilder/Codescheibe}
      }\quad
    }% end of mbox
    \caption{Aufbau von Winkelencoder}
\end{figure}

Eine dynamische Listendefinition sähe wie folgt aus:
\tt \begin{verbatim}
 CTypedPtrArray<CPtrArray,FktPointerStruct*> m_FktPointerStructListe;
\end{verbatim} \rm



MakeIndex-Datei erstellen (Beispieldatei)
 
%%
%% This is file `Diplom.ist'.
%%
%% \CharacterTable
%%  {Upper-case    \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
%%   Lower-case    \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
%%   Digits        \0\1\2\3\4\5\6\7\8\9
%%   Exclamation   \!     Double quote  \"     Hash (number) \#
%%   Dollar        \$     Percent       \%     Ampersand     \&
%%   Acute accent  \'     Left paren    \(     Right paren   \)
%%   Asterisk      \*     Plus          \+     Comma         \,
%%   Minus         \-     Point         \.     Solidus       \/
%%   Colon         \:     Semicolon     \;     Less than     \<
%%   Equals        \=     Greater than  \>     Question mark \?
%%   Commercial at \@     Left bracket  \[     Backslash     \\
%%   Right bracket \]     Circumflex    \^     Underscore    \_
%%   Grave accent  \`     Left brace    \{     Vertical bar  \|
%%   Right brace   \}     Tilde         \~}
%%

quote '*'
level '!'
encap '|'
page_compositor '-'
preamble "\\begin{theindex} \\thispagestyle{fancy}\n"
postamble "\n\n\\end{theindex}\n"
heading_prefix "{\\bf\\hfil "
heading_suffix "}\\nopagebreak%\n \\indexspace\\nopagebreak%"
headings_flag 1
item_0 "\n \\item "
item_1 "\n   \\subitem "
item_2 "\n     \\subsubitem "
delim_0 "\\ "
delim_1 "\\ "
delim_2 "\\ "
delim_r "~--~"
suffix_2p "\\,f."
suffix_3p "\\,ff."

%%
%% End of file `Diplom.ist'.



Eigene MakeIndex-Datei verwenden
In TeXnicCenter unter Ausgabe->Ausgabeprofile folgendes für pdfLaTeX als Argumente für MakeIndex einstellen:
-g -s Diplom.ist "%bm"


BibTeX-Datei erstellen (Beispieldatei)
 
% BibTeX standard bibliography style `plain'
% version 0.99a for BibTeX versions 0.99a or later, LaTeX version 2.09.
% Copyright (C) 1985, all rights reserved.
% Copying of this file is authorized only if either
% (1) you make absolutely no changes to your copy, including name, or
% (2) if you do make changes, you name it something other than
% btxbst.doc, plain.bst, unsrt.bst, alpha.bst, and abbrv.bst.
% This restriction helps ensure that all standard styles are identical.
% The file btxbst.doc has the documentation for this style.
%   15-feb-92   (MW)    Updated for use with `bibgerman.sty': things like "and"
%                       change with the language. Switch the language using the
%                       language field: 
%                          language = "german" | "USenglish" | "english"
%                       Then a `\selectlanguage{...}' command will be pushed just
%                       before the `\bibitem...' command for the entry in work.

ENTRY
  { address
    author
    booktitle
    chapter
    edition
    editor
    howpublished
    institution
    journal
    key
    language
    month
    note
    number
    organization
    pages
    publisher
    school
    series
    title
    type
    volume
    year
  }
  {}
  { label }

INTEGERS { output.state before.all mid.sentence after.sentence after.block before.title }

STRINGS { s t language.state language.temp }

FUNCTION {init.state.consts}
{ #0 'before.all :=
  #1 'mid.sentence :=
  #2 'after.sentence :=
  #3 'after.block :=
  #4 'before.title :=
  "nostate" 'language.state :=
}

FUNCTION {language.state.test}

  'language.temp :=
  language.temp language.state =
    { #1 }
    { #0 }
  if$
}
 

FUNCTION {not}
{   { #0 }
    { #1 }
  if$
}

FUNCTION {and}
{   'skip$
    { pop$ #0 }
  if$
}

FUNCTION {or}
{   { pop$ #1 }
    'skip$
  if$
}

FUNCTION {output.nonnull}
{ 's :=
  output.state mid.sentence =
    { ", " * write$ }
    { output.state after.block =
        { add.period$ write$
          newline$
          "\newblock " write$
        }
        { output.state before.all =
            'write$
           % next if is for use with `new' FUNCTION {after.authors}
            { output.state before.title =
                { ": " * write$ }
                { add.period$ " " * write$ }
              if$
            }
          if$
        }
      if$
      mid.sentence 'output.state :=
    }
  if$
  s
}

FUNCTION {output}
{ duplicate$ empty$
    'pop$
    'output.nonnull
  if$
}

FUNCTION {output.check}
{ 't :=
  duplicate$ empty$
    { pop$ "empty " t * " in " * cite$ * warning$ }
    'output.nonnull
  if$
}

FUNCTION {output.bibitem}
{ newline$
  language empty$
    'skip$
    { language.state language =
        'skip$
        { "\selectlanguage{\" language * "}" * write$
          newline$
        }
      if$
      language 'language.state :=
    }
  if$
  "\bibitem{" write$
  cite$ write$
  "}" write$
  newline$
  ""
  before.all 'output.state :=
}

FUNCTION {fin.entry}
{ add.period$
  write$
  newline$
}

FUNCTION {new.block}
{ output.state before.all =
    'skip$
    { after.block 'output.state := }
  if$
}

FUNCTION {new.sentence}
{ output.state after.block =
    'skip$
    { output.state before.all =
        'skip$
        { after.sentence 'output.state := }
      if$
    }
  if$
}

% new one -> sets what is specified in FUNCTION {output.nonnull}
% if `before.title 'output.state = ... if$' is true
FUNCTION {after.authors}
{ output.state before.all =
    'skip$
    { before.title 'output.state := }
  if$
}

FUNCTION {new.block.checka}
{ empty$
    'skip$
    'new.block
  if$
}

FUNCTION {new.block.checkb}
{ empty$
  swap$ empty$
  and
    'skip$
    'new.block
  if$
}

FUNCTION {new.block.checkc}
{ empty$
  swap$ empty$
  and
    'skip$
    'after.authors
  if$
}

FUNCTION {new.sentence.checka}
{ empty$
    'skip$
    'new.sentence
  if$
}

FUNCTION {new.sentence.checkb}
{ empty$
  swap$ empty$
  and
    'skip$
    'new.sentence
  if$
}

FUNCTION {field.or.null}
{ duplicate$ empty$
    { pop$ "" }
    'skip$
  if$
}

FUNCTION {emphasize}
{ duplicate$ empty$
    { pop$ "" }
    { "{\em " swap$ * "}" * }
  if$
}

FUNCTION {smallcaps}
{ duplicate$ empty$
    { pop$ "" }
    { "{\sc " swap$ * "}" * }
  if$
}

INTEGERS { nameptr namesleft numnames }

FUNCTION {format.names}
{ 's :=
  #1 'nameptr :=
  s num.names$ 'numnames :=
  numnames 'namesleft :=
    { namesleft #0 > }
    { nameptr #1 >
        { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ smallcaps 't :=
          namesleft #1 >
            { ", " * t * }
            { numnames #2 >
                { "english" language.state.test
                  "USenglish" language.state.test
                  or
                     {"," * }
                     'skip$
                  if$
                }
                'skip$
              if$
              t "others" =
                { " \btxetalshort{.}" * }
                { " \btxandlong{}\ " * t * }
              if$
            }
          if$
        }
        { s nameptr "{ll}{, jj}{, ff}{~vv}" format.name$ smallcaps }
      if$
      nameptr #1 + 'nameptr :=
      namesleft #1 - 'namesleft :=
    }
  while$
}

FUNCTION {format.authors}
{ author empty$
    { "" }
    { author format.names }
  if$
}

FUNCTION {format.editors}
{ editor empty$
    { "" }
    { editor format.names
      editor num.names$ #1 >
        { "\ (\btxeditorslong{})" * }
        { "\ (\btxeditorlong{})" * }
      if$
    }
  if$
}

FUNCTION {format.title}
{ title empty$
    { "" }
    { "english" language.state.test
      "USenglish" language.state.test
      or
        { title "t" change.case$ emphasize }
        { title emphasize }
      if$
    }
  if$
}

FUNCTION {n.dashify}
{ 't :=
  ""
    { t empty$ not }
    { t #1 #1 substring$ "-" =
        { t #1 #2 substring$ "--" = not
            { "--" *
              t #2 global.max$ substring$ 't :=
            }
            {   { t #1 #1 substring$ "-" = }
                { "-" *
                  t #2 global.max$ substring$ 't :=
                }
              while$
            }
          if$
        }
        { t #1 #1 substring$ *
          t #2 global.max$ substring$ 't :=
        }
      if$
    }
  while$
}

FUNCTION {format.date}
{ year empty$
    { month empty$
        { "" }
        { "there's a month but no year in " cite$ * warning$
          month
        }
      if$
    }
    { month empty$
        'year
        { month " " * year * }
      if$
    }
  if$
}

FUNCTION {format.btitle}
{ title emphasize
}

FUNCTION {tie.or.space.connect}
{ duplicate$ text.length$ #3 <
    { "~" }
    { "\ " }
  if$
  swap$ * *
}

FUNCTION {either.or.check}
{ empty$
    'pop$
    { "can't use both " swap$ * " fields in " * cite$ * warning$ }
  if$
}

FUNCTION {format.bvolume}
{ volume empty$
    { "" }
    { output.state after.block =
        { "\Btxvolumelong{}" }
        { "\btxvolumelong{}" }
      if$
      volume tie.or.space.connect
      series empty$
        'skip$
        { " \btxofserieslong{}\ " * series emphasize * }
      if$
      "volume and number" number either.or.check
    }
  if$
}

FUNCTION {format.number.series}
{ volume empty$
    { number empty$
        { series field.or.null }
        { output.state mid.sentence =
            { "\btxnumberlong{}" }
            { "\Btxnumberlong{}" }
          if$
          number tie.or.space.connect
          series empty$
            { "there's a number but no series in " cite$ * warning$ }
            { " \btxinserieslong{}\ " * series emphasize * }
          if$
        }
      if$
    }
    { "" }
  if$
}

FUNCTION {format.edition}
{ edition empty$
    { "" }
    { "english" language.state.test
      "USenglish" language.state.test
      or
        { output.state mid.sentence =
            { edition "l" change.case$ " \btxeditionlong{}" * }
            { edition "t" change.case$ " \btxeditionlong{}" * }
          if$
        }
        { edition " \btxeditionlong{}" * }
      if$
    }
  if$
}

INTEGERS { multiresult }

FUNCTION {multi.page.check}
{ 't :=
  #0 'multiresult :=
    { multiresult not
      t empty$ not
      and
    }
    { t #1 #1 substring$
      duplicate$ "-" =
      swap$ duplicate$ "," =
      swap$ "+" =
      or or
        { #1 'multiresult := }
        { t #2 global.max$ substring$ 't := }
      if$
    }
  while$
  multiresult
}

FUNCTION {format.pages}
{ pages empty$
    { "" }
    { pages multi.page.check
        { "\btxpageslong{}" pages n.dashify tie.or.space.connect }
        { "\btxpagelong{}" pages tie.or.space.connect }
      if$
    }
  if$
}

FUNCTION {format.vol.num.pages}
{ volume field.or.null
  number empty$
    'skip$
    { "(" number * ")" * *
      volume empty$
        { "there's a number but no volume in " cite$ * warning$ }
        'skip$
      if$
    }
  if$
  pages empty$
    'skip$
    { duplicate$ empty$
        { pop$ format.pages }
        { ":" * pages n.dashify * }
      if$
    }
  if$
}

FUNCTION {format.chapter.pages}
{ chapter empty$
    'format.pages
    { type empty$
        { "\btxchapterlong{}" }
        { "english" language.state.test
          "USenglish" language.state.test
          or
             { type "l" change.case$ }
             { type }
         if$
        }
      if$
      chapter tie.or.space.connect
      pages empty$
        'skip$
        { ", " * format.pages * }
      if$
    }
  if$
}

FUNCTION {format.in.ed.booktitle}
{ booktitle empty$
    { "" }
    { editor empty$
        { "\Btxinlong{}\ " booktitle emphasize * }
        { "\Btxinlong{}\ " format.editors * ": " * booktitle emphasize * }
      if$
    }
  if$
}

FUNCTION {empty.misc.check}
{ author empty$ title empty$ howpublished empty$
  month empty$ year empty$ note empty$
  and and and and and
    { "all relevant fields are empty in " cite$ * warning$ }
    'skip$
  if$
}

FUNCTION {format.thesis.type}
{ type empty$
    'skip$
    { pop$
      "english" language.state.test
      "USenglish" language.state.test
      or
        { type "t" change.case$ }
        { type }
      if$
    }
  if$
}

FUNCTION {format.tr.number}
{ type empty$
    { "\Btxtechreplong{}" }
    'type
  if$
  number empty$
    { "english" language.state.test
      "USenglish" language.state.test
      or
        { type empty$
            { pop$ "\btxtechreplong{}" }
            { "t" change.case$ }
          if$
        }
        'skip$
      if$
    }
    { number tie.or.space.connect }
  if$
}

FUNCTION {format.article.crossref}
{ key empty$
    { journal empty$
        { "need key or journal for " cite$ * " to crossref " * crossref *
          warning$
          ""
        }
        { "\Btxinlong{}\ " journal emphasize * }
      if$
    }
    { "\Btxinlong{}\ " key emphasize * }
  if$
  " \cite{" * crossref * "}" *
}

FUNCTION {format.crossref.editor}
{ editor #1 "{ll}{, jj}{, ff}{~vv}" format.name$ smallcaps
  editor num.names$ duplicate$
  #2 >
    { pop$ " \btxetalshort{.}" * }
    { #2 <
        'skip$
        { editor #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
            { " \btxetalshort{.}" * }
            { " \btxandlong{}\ " * editor #2 "{ff}{~vv}{~ll}{, jj}" format.name$ smallcaps * }
          if$
        }
      if$
    }
  if$
}

FUNCTION {format.book.crossref}
{ volume empty$
    { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
      "\Btxinlong{}\ "
    }
    { "\Btxvolumelong{}" volume tie.or.space.connect
      " \btxofserieslong{}\ " *
    }
  if$
  editor empty$
  editor field.or.null author field.or.null =
  or
    { key empty$
        { series empty$
            { "need editor, key, or series for " cite$ * " to crossref " *
              crossref * warning$
              "" *
            }
            { series emphasize * }
          if$
        }
        { key emphasize * }
      if$
    }
    { format.crossref.editor * }
  if$
  " \cite{" * crossref * "}" *
}

FUNCTION {format.incoll.inproc.crossref}
{ editor empty$
  editor field.or.null author field.or.null =
  or
    { key empty$
        { booktitle empty$
            { "need editor, key, or booktitle for " cite$ * " to crossref " *
              crossref * warning$
              ""
            }
            { "\Btxinlong{}\ " booktitle emphasize * }
          if$
        }
        { "\Btxinlong{}\ " key emphasize * }
      if$
    }
    { "\Btxinlong{}\ " format.crossref.editor * }
  if$
  " \cite{" * crossref * "}" *
}

FUNCTION {article}
{ output.bibitem
  format.authors "author" output.check
  after.authors
  format.title "title" output.check
  new.block
  crossref missing$
    { journal 
      title missing$
        { emphasize }
        'skip$
      if$
      "journal" output.check 
      format.vol.num.pages output
      format.date "year" output.check
    }
    { format.article.crossref output.nonnull
      format.pages output
    }
  if$
  new.block
  note output
  fin.entry
}

FUNCTION {book}
{ output.bibitem
  author empty$
    { format.editors "author and editor" output.check }
    { format.authors output.nonnull
      crossref missing$
        { "author and editor" editor either.or.check }
        'skip$
      if$
    }
  if$
  after.authors
  format.btitle "title" output.check
  crossref missing$
    { format.bvolume output
      new.block
      format.number.series output
      new.sentence
      publisher "publisher" output.check
      address output
    }
    { new.block
      format.book.crossref output.nonnull
    }
  if$
  format.edition output
  format.date "year" output.check
  new.block
  note output
  fin.entry
}

FUNCTION {booklet}
{ output.bibitem
  format.authors output
  after.authors
  format.title "title" output.check
  howpublished address new.block.checkb
  howpublished output
  address output
  format.date output
  new.block
  note output
  fin.entry
}

FUNCTION {inbook}
{ output.bibitem
  author empty$
    { format.editors "author and editor" output.check }
    { format.authors output.nonnull
      crossref missing$
        { "author and editor" editor either.or.check }
        'skip$
      if$
    }
  if$
  after.authors
  format.btitle "title" output.check
  crossref missing$
    { format.bvolume output
      format.chapter.pages "chapter and pages" output.check
      new.block
      format.number.series output
      new.sentence
      publisher "publisher" output.check
      address output
    }
    { format.chapter.pages "chapter and pages" output.check
      new.block
      format.book.crossref output.nonnull
    }
  if$
  format.edition output
  format.date "year" output.check
  new.block
  note output
  fin.entry
}

FUNCTION {incollection}
{ output.bibitem
  format.authors "author" output.check
  after.authors
  format.title "title" output.check
  new.block
  crossref missing$
    { format.in.ed.booktitle "booktitle" output.check
      format.bvolume output
      format.number.series output
      format.chapter.pages output
      new.sentence
      publisher "publisher" output.check
      address output
      format.edition output
      format.date "year" output.check
    }
    { format.incoll.inproc.crossref output.nonnull
      format.chapter.pages output
    }
  if$
  new.block
  note output
  fin.entry
}

FUNCTION {inproceedings}
{ output.bibitem
  format.authors "author" output.check
  after.authors
  format.title "title" output.check
  new.block
  crossref missing$
    { format.in.ed.booktitle "booktitle" output.check
      format.bvolume output
      format.number.series output
      format.pages output
      address empty$
        { organization publisher new.sentence.checkb
          organization output
          publisher output
          format.date "year" output.check
        }
        { address output.nonnull
          format.date "year" output.check
          new.sentence
          organization output
          publisher output
        }
      if$
    }
    { format.incoll.inproc.crossref output.nonnull
      format.pages output
    }
  if$
  new.block
  note output
  fin.entry
}

FUNCTION {conference} { inproceedings }

FUNCTION {manual}
{ output.bibitem
  author empty$
    { organization empty$
        'skip$
        { organization smallcaps output.nonnull
          address output
        }
      if$
    }
    { format.authors output.nonnull }
  if$
  after.authors
  format.btitle "title" output.check
  author empty$
    { organization empty$
        { address new.block.checka
          address output
        }
        'skip$
      if$
    }
    { organization address new.block.checkb
      organization output
      address output
    }
  if$
  format.edition output
  format.date output
  new.block
  note output
  fin.entry
}

FUNCTION {mastersthesis}
{ output.bibitem
  format.authors "author" output.check
  after.authors
  format.title "title" output.check
  new.block
  "\btxmastthesis{}" format.thesis.type output.nonnull
  school "school" output.check
  address output
  format.date "year" output.check
  new.block
  note output
  fin.entry
}

FUNCTION {misc}
{ output.bibitem
  format.authors output
  title howpublished new.block.checkc
  format.title output
  howpublished new.block.checka
  howpublished output
  format.date output
  new.block
  note output
  fin.entry
  empty.misc.check
}

FUNCTION {phdthesis}
{ output.bibitem
  format.authors "author" output.check
  after.authors
  format.btitle "title" output.check
  new.block
  "\btxphdthesis{}" format.thesis.type output.nonnull
  school "school" output.check
  address output
  format.date "year" output.check
  new.block
  note output
  fin.entry
}

FUNCTION {proceedings}
{ output.bibitem
  editor empty$
    { organization smallcaps output }
    { format.editors output.nonnull }
  if$
  after.authors
  format.btitle "title" output.check
  format.bvolume output
  format.number.series output
  address empty$
    { editor empty$
        { publisher new.sentence.checka }
        { organization publisher new.sentence.checkb
          organization output
        }
      if$
      publisher output
      format.date "year" output.check
    }
    { address output.nonnull
      format.date "year" output.check
      new.sentence
      editor empty$
        'skip$
        { organization output }
      if$
      publisher output
    }
  if$
  new.block
  note output
  fin.entry
}

FUNCTION {techreport}
{ output.bibitem
  format.authors "author" output.check
  after.authors
  format.title "title" output.check
  new.block
  format.tr.number output.nonnull
  institution "institution" output.check
  address output
  format.date "year" output.check
  new.block
  note output
  fin.entry
}

FUNCTION {unpublished}
{ output.bibitem
  format.authors "author" output.check
  after.authors
  format.title "title" output.check
  new.block
  note "note" output.check
  format.date output
  fin.entry
}

FUNCTION {default.type} { misc }

MACRO {jan} {"\btxmonjanlong{}"}

MACRO {feb} {"\btxmonfeblong{}"}

MACRO {mar} {"\btxmonmarlong{}"}

MACRO {apr} {"\btxmonaprlong{}"}

MACRO {may} {"\btxmonmaylong{}"}

MACRO {jun} {"\btxmonjunlong{}"}

MACRO {jul} {"\btxmonjullong{}"}

MACRO {aug} {"\btxmonauglong{}"}

MACRO {sep} {"\btxmonseplong{}"}

MACRO {oct} {"\btxmonoctlong{}"}

MACRO {nov} {"\btxmonnovlong{}"}

MACRO {dec} {"\btxmondeclong{}"}

MACRO {acmcs} {"ACM Computing Surveys"}

MACRO {acta} {"Acta Informatica"}

MACRO {cacm} {"Communications of the ACM"}

MACRO {ibmjrd} {"IBM Journal of Research and Development"}

MACRO {ibmsj} {"IBM Systems Journal"}

MACRO {ieeese} {"IEEE Transactions on Software Engineering"}

MACRO {ieeetc} {"IEEE Transactions on Computers"}

MACRO {ieeetcad}
 {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"}

MACRO {ipl} {"Information Processing Letters"}

MACRO {jacm} {"Journal of the ACM"}

MACRO {jcss} {"Journal of Computer and System Sciences"}

MACRO {scp} {"Science of Computer Programming"}

MACRO {sicomp} {"SIAM Journal on Computing"}

MACRO {tocs} {"ACM Transactions on Computer Systems"}

MACRO {tods} {"ACM Transactions on Database Systems"}

MACRO {tog} {"ACM Transactions on Graphics"}

MACRO {toms} {"ACM Transactions on Mathematical Software"}

MACRO {toois} {"ACM Transactions on Office Information Systems"}

MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"}

MACRO {tcs} {"Theoretical Computer Science"}

READ

STRINGS { longest.label }

INTEGERS { number.label longest.label.width }

FUNCTION {initialize.longest.label}
{ "" 'longest.label :=
  #1 'number.label :=
  #0 'longest.label.width :=
}

FUNCTION {longest.label.pass}
{ number.label int.to.str$ 'label :=
  number.label #1 + 'number.label :=
  label width$ longest.label.width >
    { label 'longest.label :=
      label width$ 'longest.label.width :=
    }
    'skip$
  if$
}

EXECUTE {initialize.longest.label}

ITERATE {longest.label.pass}

FUNCTION {begin.bib}
{ preamble$ empty$
    'skip$
    { preamble$ write$ newline$ }
  if$
  "\begin{thebibliography}{"  longest.label  * "}" * write$ newline$
}

EXECUTE {begin.bib}

EXECUTE {init.state.consts}

ITERATE {call.type$}

FUNCTION {end.bib}
{ newline$
  "\end{thebibliography}" write$ newline$
}

EXECUTE {end.bib}



Eigene BibTeX-Datei verwenden
In TeXnicCenter unter Ausgabe->Ausgabeprofile folgendes für pdfLaTeX als Argumente für BibTeX einstellen:
DiplomMain "%bm"


Kreatives Inhaltsverzeichnis
Ich wollte ein Inhaltsverzeichnis erstellen mit eigenen Schriftgrößen, zentriert in der Mitte, die Seitenzahlen gleich nebenan und ohne dämliche Punkte.
1. Eigene Stildatei bauen:
%%
%% This is file `jahrbuch.sty',
%%  Copyright 2001, Katrin Weinel
%% 
%% 

\renewcommand*\l@chapter[2]
{
  \ifnum \c@tocdepth >\m@ne
    \addpenalty{-\@highpenalty}
    \vskip 1.0em 
    \@plus \p@
    \setlength \@tempdima{1.0em}
    \begingroup
      \centering                 % Zentriert!
      \leavevmode 
      {
        \bfseries                 % Fette Schrift
        \Huge                     % Schriftgröße 
        #1                          % Titel hinschreiben
        \nobreak                 % Kein Zeilenumbruch
        \hspace{1mm}         % Ein bißchen Platz lassen
        \nobreak                 % Kein Zeilenumbruch
        #2                          % Seitennummer
      } 
      \par 
      \penalty \@highpenalty
    \endgroup
  \fi}

\renewcommand\l@section[2]
{
  \ifnum \c@tocdepth >\z@
    \addpenalty{\@secpenalty}
    \addvspace{1.0em \@plus\p@}
    \setlength\@tempdima{1.0em}
    \begingroup
      \centering                 % Zentriert
      \leavevmode 
      {
        \bfseries                  % Fette Schrift
        \large                      % Schriftgröße
        #1                         % Titel hinschreiben
        \nobreak                % Kein Zeilenumbruch
        \hspace{1mm}       % Ein bißchen Platz lassen
        \nobreak                % Kein Zeilenumbruch
        #2                           % Seitennummer
      } 
      \par
    \endgroup
  \fi}

2. Stildatei einbringen

\usepackage{jahrbuch}

3. Inhaltsverzeichnis anlegen

\tableofcontents{}