92 lines
4.0 KiB
TeX
92 lines
4.0 KiB
TeX
% !TEX root = ../Main.tex
|
|
% ==============================================================================
|
|
% Bibliography and References
|
|
% ==============================================================================
|
|
% Description: This file handles the bibliography generation and formatting.
|
|
% It uses BibLaTeX with Biber backend for advanced citation
|
|
% management and formatting capabilities.
|
|
% Author: [Your Name]
|
|
% Date: [Date]
|
|
% ==============================================================================
|
|
|
|
% ------------------------------------------------------------------------------
|
|
% Bibliography Chapter
|
|
% ------------------------------------------------------------------------------
|
|
% Create a new chapter for the bibliography
|
|
% This appears in the table of contents as "Literaturverzeichnis"
|
|
% ------------------------------------------------------------------------------
|
|
\clearpage
|
|
\chapter{Literaturverzeichnis}
|
|
\label{chap:bibliography}
|
|
|
|
% ------------------------------------------------------------------------------
|
|
% Bibliography Generation
|
|
% ------------------------------------------------------------------------------
|
|
% Print the bibliography using BibLaTeX
|
|
% The bibliography style and sorting are configured in the document class
|
|
% All entries from Main.bib that are cited in the document will appear here
|
|
% ------------------------------------------------------------------------------
|
|
\printbibliography[
|
|
heading=none, % Suppress automatic heading (we use \chapter above)
|
|
title={} % Empty title since we already have the chapter title
|
|
]
|
|
|
|
% ------------------------------------------------------------------------------
|
|
% Bibliography Notes
|
|
% ------------------------------------------------------------------------------
|
|
% The bibliography is automatically formatted according to the citation style
|
|
% configured in the HSRTReport class. Common citation commands include:
|
|
%
|
|
% \cite{key} - Standard citation
|
|
% \textcite{key} - Author name in text with year in parentheses
|
|
% \parencite{key} - Full citation in parentheses
|
|
% \footcite{key} - Citation in footnote
|
|
% \citeauthor{key} - Only author name
|
|
% \citeyear{key} - Only year
|
|
% \citep{key} - Compatibility alias for \parencite
|
|
% \citet{key} - Compatibility alias for \textcite
|
|
%
|
|
% Multiple citations: \cite{key1,key2,key3}
|
|
% Page references: \cite[p.~15]{key}
|
|
% Chapter references: \cite[Chapter~3]{key}
|
|
% ------------------------------------------------------------------------------
|
|
|
|
% ------------------------------------------------------------------------------
|
|
% Optional: Separate Bibliography Sections
|
|
% ------------------------------------------------------------------------------
|
|
% If you need to separate the bibliography into sections (e.g., primary and
|
|
% secondary sources), you can use the following approach:
|
|
%
|
|
% \printbibheading[title={Primary Sources}]
|
|
% \printbibliography[
|
|
% heading=none,
|
|
% keyword=primary
|
|
% ]
|
|
%
|
|
% \printbibheading[title={Secondary Sources}]
|
|
% \printbibliography[
|
|
% heading=none,
|
|
% keyword=secondary
|
|
% ]
|
|
%
|
|
% Note: This requires adding keywords to your .bib entries
|
|
% ------------------------------------------------------------------------------
|
|
|
|
% ------------------------------------------------------------------------------
|
|
% Optional: Bibliography by Chapter
|
|
% ------------------------------------------------------------------------------
|
|
% For longer documents, you might want to include bibliographies at the end
|
|
% of each chapter. This can be achieved using:
|
|
%
|
|
% \printbibliography[
|
|
% heading=subbibliography,
|
|
% segment=\therefsegment
|
|
% ]
|
|
%
|
|
% This requires additional configuration in the preamble
|
|
% ------------------------------------------------------------------------------
|
|
|
|
% ==============================================================================
|
|
% End of Bibliography
|
|
% ==============================================================================
|