diff --git a/Content/00_toc.tex b/Content/00_toc.tex
index 2ae76be..c9b4b42 100644
--- a/Content/00_toc.tex
+++ b/Content/00_toc.tex
@@ -1,6 +1,21 @@
% !TEX root = ../Main.tex
+% ==============================================================================
+% Table of Contents and Lists
+% ==============================================================================
+% Description: This file generates the table of contents and all document lists
+% including figures, tables, equations, listings, and glossaries.
+% The formatting uses the blenderfont style for consistency.
+% Author: [Your Name]
+% Date: [Date]
+% ==============================================================================
-% ==== TOC =====
+% ------------------------------------------------------------------------------
+% Table of Contents
+% ------------------------------------------------------------------------------
+% Generate the main table of contents with custom formatting
+% The blenderfont provides a consistent typographic style
+% Vertical spacing is adjusted for optimal layout
+% ------------------------------------------------------------------------------
{
\newpage
\blenderfont
@@ -8,9 +23,15 @@
\tableofcontents
}
+% Add vertical fill to push subsequent content down
\vspace{\fill}
-% ==== List of Figures ====
+% ------------------------------------------------------------------------------
+% List of Figures
+% ------------------------------------------------------------------------------
+% Generate list of all figures in the document
+% Figures are automatically numbered and referenced
+% ------------------------------------------------------------------------------
\newpage
{
\noindent
@@ -19,30 +40,66 @@
\listoffigures
}
-% ==== List of Tables ====
+% ------------------------------------------------------------------------------
+% List of Tables
+% ------------------------------------------------------------------------------
+% Generate list of all tables in the document
+% Tables are automatically numbered and referenced
+% ------------------------------------------------------------------------------
{
\noindent
\blenderfont
\listoftables
}
-% ==== List of Equations ====
+% ------------------------------------------------------------------------------
+% List of Listings
+% ------------------------------------------------------------------------------
+% Generate list of all code listings in the document
+% Code listings are automatically numbered and referenced
+% This includes all lstlisting environments with captions
+% ------------------------------------------------------------------------------
+{
+ \noindent
+ \blenderfont
+ \lstlistoflistings
+}
+
+% ------------------------------------------------------------------------------
+% List of Equations
+% ------------------------------------------------------------------------------
+% Generate list of all equations in the document
+% Uses custom command \listofmyequations defined in the class
+% ------------------------------------------------------------------------------
{
\noindent
\blenderfont
\listofmyequations
}
-% ==== Glossary =====
+% ------------------------------------------------------------------------------
+% Glossary Section
+% ------------------------------------------------------------------------------
+% Generate glossary and list of acronyms
+% Two separate glossaries are printed:
+% 1. Main glossary with technical terms
+% 2. Acronym list with abbreviations
+% ------------------------------------------------------------------------------
{
\noindent
\blenderfont
+
+ % --- Main Glossary ---
+ % Print main glossary with German header "Wort"
{
\renewcommand*{\entryname}{Wort}
\newpage
\vspace*{-2.25em}
\printglossary
}
+
+ % --- Acronym List ---
+ % Print acronym glossary with German header "Abkürzung"
{
\renewcommand*{\entryname}{Abkürzung}
\newpage
@@ -50,3 +107,7 @@
\printglossary[type=\acronymtype]
}
}
+
+% ==============================================================================
+% End of Table of Contents and Lists
+% ==============================================================================
diff --git a/Content/01_content.tex b/Content/01_content.tex
index fd0d54c..6dda479 100644
--- a/Content/01_content.tex
+++ b/Content/01_content.tex
@@ -1 +1,73 @@
% !TEX root = ../Main.tex
+% ==============================================================================
+% Document Content Loader
+% ==============================================================================
+% Description: This file serves as the main content loader for all chapters.
+% Chapters are included via \input commands in the designated area.
+% The marked section is automatically managed by chapter scripts.
+% Author: [Your Name]
+% Date: [Date]
+% ==============================================================================
+
+% ------------------------------------------------------------------------------
+% TexCount Settings – For word count
+% ------------------------------------------------------------------------------
+%
+% Ignore Headings:
+%TC:macro \chapter [ignore]
+%TC:macro \section [ignore]
+%TC:macro \subsection [ignore]
+%TC:macro \subsubsection [ignore]
+%TC:macro \includesvg [ignore]
+%
+% Ignore Figures and Tables:
+%TC:envir figure [ignore] ignore
+%TC:envir table [ignore] ignore
+%
+% ------------------------------------------------------------------------------
+
+% ------------------------------------------------------------------------------
+% Chapter Loading Instructions
+% ------------------------------------------------------------------------------
+% To add chapters manually:
+% 1. Create a new .tex file in Content/Chapters/
+% 2. Add \input{Content/Chapters/filename} in the marked area below
+%
+% To use automatic chapter management:
+% - Use ./scripts/create_chapter.sh to create new chapters
+% - Use ./scripts/list_chapters.sh to view all chapters
+% - Use ./scripts/delete_chapter.sh to remove chapters
+%
+% The scripts will automatically update this file's chapter list.
+% ------------------------------------------------------------------------------
+
+% ==============================================================================
+% BEGIN CHAPTER INCLUDES (Auto-managed Section)
+% ==============================================================================
+% WARNING: Do not manually edit between the BEGIN and END markers if using
+% the chapter management scripts. Manual edits will be preserved,
+% but may interfere with automatic management.
+% ==============================================================================
+
+% --- CHAPTER LIST START --- (Do not remove this marker)
+% --- CHAPTER LIST END --- (Do not remove this marker)
+
+% ==============================================================================
+% END CHAPTER INCLUDES
+% ==============================================================================
+
+% ------------------------------------------------------------------------------
+% Additional Content (Optional)
+% ------------------------------------------------------------------------------
+% Any content that should appear after all chapters but before the bibliography
+% can be added here. For example, appendices or supplementary material.
+% ------------------------------------------------------------------------------
+
+% Uncomment to add appendices:
+% \appendix
+% \input{Content/Chapters/appendix_a}
+% \input{Content/Chapters/appendix_b}
+
+% ==============================================================================
+% End of Content Loader
+% ==============================================================================
diff --git a/Content/99_bibliography.tex b/Content/99_bibliography.tex
index b9dd7a0..c363b71 100644
--- a/Content/99_bibliography.tex
+++ b/Content/99_bibliography.tex
@@ -1,3 +1,90 @@
% !TEX root = ../Main.tex
-\newpage
-\printbibliography
\ No newline at end of file
+% ==============================================================================
+% 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"
+% ------------------------------------------------------------------------------
+\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
+% ==============================================================================
diff --git a/Content/Chapters/example_chapter.tex b/Content/Chapters/example_chapter.tex
new file mode 100644
index 0000000..418911d
--- /dev/null
+++ b/Content/Chapters/example_chapter.tex
@@ -0,0 +1,469 @@
+% !TEX root = ../../Main.tex
+% ==============================================================================
+% Example Chapter Template
+% ==============================================================================
+% Description: This file serves as a template for creating new chapters.
+% It demonstrates the proper structure, formatting, and various
+% LaTeX elements that can be used in academic documents.
+% Usage: Copy this file and rename it for your own chapters.
+% Include it in the main document using \input{Content/Chapters/your_chapter}
+% Author: [Your Name]
+% Date: [Date]
+% ==============================================================================
+
+% ------------------------------------------------------------------------------
+% Chapter Declaration
+% ------------------------------------------------------------------------------
+% Start a new chapter with a descriptive title
+% The \label command allows for cross-referencing
+% ------------------------------------------------------------------------------
+\chapter{Example Chapter Title}
+\label{chap:example_chapter}
+
+% ------------------------------------------------------------------------------
+% Chapter Introduction
+% ------------------------------------------------------------------------------
+% Begin with an introductory paragraph that outlines the chapter's content
+% This helps readers understand what to expect
+% ------------------------------------------------------------------------------
+
+This chapter demonstrates the various features and formatting options available
+in the HSRTReport template. It serves as a comprehensive guide for creating
+well-structured academic content. The following sections will cover different
+aspects of document formatting, from basic text elements to complex mathematical
+expressions and graphical content.
+
+% ==============================================================================
+% Section: Basic Text Formatting
+% ==============================================================================
+\section{Basic Text Formatting}
+\label{sec:basic_formatting}
+
+% ------------------------------------------------------------------------------
+% Subsection: Text Styles
+% ------------------------------------------------------------------------------
+\subsection{Text Styles}
+\label{subsec:text_styles}
+
+The template supports various text formatting options:
+
+\begin{itemize}
+ \item \textbf{Bold text} for emphasis on important terms
+ \item \textit{Italic text} for foreign words or emphasis
+ \item \texttt{Monospace text} for code, file names, or commands
+ \item \underline{Underlined text} for special highlighting
+ \item \textsc{Small Caps} for acronyms or special names
+ \item Combined styles: \textbf{\textit{bold and italic}}
+\end{itemize}
+
+% ------------------------------------------------------------------------------
+% Subsection: Quotations
+% ------------------------------------------------------------------------------
+\subsection{Quotations and Citations}
+\label{subsec:quotations}
+
+For short inline quotes, use regular quotation marks: ``This is a short quote.''
+
+For longer quotations, use the quote environment:
+
+\begin{quote}
+ ``This is a longer quotation that demonstrates how block quotes are formatted
+ in the template. Block quotes are typically indented from both margins and
+ may have different spacing. They are ideal for quotations that exceed
+ three lines of text.'' \cite{example2023}
+\end{quote}
+
+% Direct citation with page number
+According to \textcite[p.~42]{examplebook2022}, the methodology is sound.
+
+% Multiple citations
+Several studies have confirmed these findings \parencite{example2023, conference2023}.
+
+% ==============================================================================
+% Section: Lists and Enumerations
+% ==============================================================================
+\section{Lists and Enumerations}
+\label{sec:lists}
+
+% ------------------------------------------------------------------------------
+% Subsection: Unordered Lists
+% ------------------------------------------------------------------------------
+\subsection{Unordered Lists}
+\label{subsec:unordered_lists}
+
+Simple bullet points:
+
+\begin{itemize}
+ \item First main point
+ \item Second main point
+ \item Third main point with sub-items:
+ \begin{itemize}
+ \item First sub-item
+ \item Second sub-item
+ \begin{itemize}
+ \item Nested sub-sub-item
+ \item Another nested item
+ \end{itemize}
+ \end{itemize}
+ \item Final main point
+\end{itemize}
+
+% ------------------------------------------------------------------------------
+% Subsection: Ordered Lists
+% ------------------------------------------------------------------------------
+\subsection{Ordered Lists}
+\label{subsec:ordered_lists}
+
+Numbered lists for sequential items:
+
+\begin{enumerate}
+ \item First step in the process
+ \item Second step with sub-steps:
+ \begin{enumerate}
+ \item Sub-step 2.1
+ \item Sub-step 2.2
+ \end{enumerate}
+ \item Third step
+ \item Final step
+\end{enumerate}
+
+% ------------------------------------------------------------------------------
+% Subsection: Description Lists
+% ------------------------------------------------------------------------------
+\subsection{Description Lists}
+\label{subsec:description_lists}
+
+For term definitions:
+
+\begin{description}
+ \item[Term One] Definition or description of the first term. This can be
+ multiple lines long and will be properly formatted.
+ \item[Term Two] Definition of the second term with emphasis on clarity.
+ \item[Complex Term] A more detailed explanation that might include
+ technical details, examples, or references to other concepts.
+\end{description}
+
+% ==============================================================================
+% Section: Mathematical Content
+% ==============================================================================
+\section{Mathematical Expressions}
+\label{sec:mathematics}
+
+% ------------------------------------------------------------------------------
+% Subsection: Inline Mathematics
+% ------------------------------------------------------------------------------
+\subsection{Inline Mathematics}
+\label{subsec:inline_math}
+
+Mathematics can be included inline, such as the quadratic formula
+$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$, or the famous Euler's identity
+$e^{i\pi} + 1 = 0$.
+
+Common mathematical symbols include:
+\begin{itemize}
+ \item Greek letters: $\alpha$, $\beta$, $\gamma$, $\Delta$, $\Omega$
+ \item Operations: $\sum_{i=1}^{n}$, $\prod_{j=1}^{m}$, $\int_{a}^{b}$
+ \item Relations: $\leq$, $\geq$, $\approx$, $\equiv$, $\propto$
+ \item Sets: $\mathbb{R}$, $\mathbb{N}$, $\mathbb{C}$, $\emptyset$
+\end{itemize}
+
+% ------------------------------------------------------------------------------
+% Subsection: Display Mathematics
+% ------------------------------------------------------------------------------
+\subsection{Display Mathematics}
+\label{subsec:display_math}
+
+For important equations, use the equation environment:
+
+\begin{equation}
+ \nabla \times \vec{B} - \frac{1}{c^2}\frac{\partial \vec{E}}{\partial t}
+ = \mu_0 \vec{J}
+ \label{eq:maxwell}
+\end{equation}
+
+Equation \eqref{eq:maxwell} represents one of Maxwell's equations.
+
+Multi-line equations with alignment:
+
+\begin{align}
+ f(x) & = x^2 + 2x + 1 \label{eq:function} \\
+ & = (x + 1)^2 \label{eq:factored}
+\end{align}
+
+Matrix example:
+
+\begin{equation}
+ \mathbf{A} = \begin{bmatrix}
+ a_{11} & a_{12} & \cdots & a_{1n} \\
+ a_{21} & a_{22} & \cdots & a_{2n} \\
+ \vdots & \vdots & \ddots & \vdots \\
+ a_{m1} & a_{m2} & \cdots & a_{mn}
+ \end{bmatrix}
+ \label{eq:matrix}
+\end{equation}
+
+% ==============================================================================
+% Section: Figures and Graphics
+% ==============================================================================
+\section{Figures and Graphics}
+\label{sec:figures}
+
+% ------------------------------------------------------------------------------
+% Subsection: Single Figures
+% ------------------------------------------------------------------------------
+\subsection{Single Figures}
+\label{subsec:single_figures}
+
+\begin{figure}[htbp]
+ \centering
+ % Replace the rule with actual image:
+ % \includegraphics[width=0.6\textwidth]{Content/Images/your_image.png}
+ \rule{0.6\textwidth}{0.4\textwidth} % Placeholder
+ \caption[Short caption for list of figures]{Detailed caption explaining the
+ figure content. This caption can be quite long and should provide
+ sufficient information for understanding the figure without reading
+ the main text.}
+ \label{fig:single_example}
+\end{figure}
+
+As shown in Figure~\ref{fig:single_example}, the visualization clearly
+demonstrates the concept. Always reference figures in the text.
+
+% ------------------------------------------------------------------------------
+% Subsection: Multiple Figures
+% ------------------------------------------------------------------------------
+\subsection{Side-by-Side Figures}
+\label{subsec:multiple_figures}
+
+\begin{figure}[htbp]
+ \centering
+ \begin{subfigure}[b]{0.45\textwidth}
+ \centering
+ % \includegraphics[width=\textwidth]{Content/Images/image1.png}
+ \rule{\textwidth}{0.6\textwidth} % Placeholder
+ \caption{First subfigure}
+ \label{fig:sub1}
+ \end{subfigure}
+ \hfill
+ \begin{subfigure}[b]{0.45\textwidth}
+ \centering
+ % \includegraphics[width=\textwidth]{Content/Images/image2.png}
+ \rule{\textwidth}{0.6\textwidth} % Placeholder
+ \caption{Second subfigure}
+ \label{fig:sub2}
+ \end{subfigure}
+ \caption{Comparison of two related concepts: (a) shows the first concept,
+ while (b) illustrates the second concept.}
+ \label{fig:comparison}
+\end{figure}
+
+% ==============================================================================
+% Section: Tables
+% ==============================================================================
+\section{Tables}
+\label{sec:tables}
+
+% ------------------------------------------------------------------------------
+% Subsection: Simple Tables
+% ------------------------------------------------------------------------------
+\subsection{Simple Tables}
+\label{subsec:simple_tables}
+
+\begin{table}[htbp]
+ \centering
+ \caption{Comparison of different methods}
+ \label{tab:comparison}
+ \begin{tabular}{lccc}
+ \toprule
+ \textbf{Method} & \textbf{Accuracy (\%)} & \textbf{Speed (ms)} & \textbf{Memory (MB)} \\
+ \midrule
+ Method A & 95.2 & 12.3 & 256 \\
+ Method B & 97.8 & 45.6 & 512 \\
+ Method C & 93.1 & 8.9 & 128 \\
+ Method D & 99.1 & 78.2 & 1024 \\
+ \bottomrule
+ \end{tabular}
+\end{table}
+
+Table~\ref{tab:comparison} presents a performance comparison of different methods.
+
+% ------------------------------------------------------------------------------
+% Subsection: Complex Tables
+% ------------------------------------------------------------------------------
+\subsection{Complex Tables with Multicolumn}
+\label{subsec:complex_tables}
+
+\begin{table}[htbp]
+ \centering
+ \caption{Experimental results across different conditions}
+ \label{tab:experimental}
+ \begin{tabular}{l|cc|cc}
+ \toprule
+ \multirow{2}{*}{\textbf{Sample}} &
+ \multicolumn{2}{c|}{\textbf{Condition A}} &
+ \multicolumn{2}{c}{\textbf{Condition B}} \\
+ & \textbf{Mean} & \textbf{SD} & \textbf{Mean} & \textbf{SD} \\
+ \midrule
+ Sample 1 & 12.3 & 1.2 & 15.6 & 2.1 \\
+ Sample 2 & 13.5 & 1.5 & 16.8 & 1.9 \\
+ Sample 3 & 11.9 & 1.1 & 14.2 & 2.3 \\
+ \midrule
+ \textbf{Average} & 12.6 & 1.3 & 15.5 & 2.1 \\
+ \bottomrule
+ \end{tabular}
+\end{table}
+
+% ==============================================================================
+% Section: Code Listings
+% ==============================================================================
+\section{Source Code}
+\label{sec:source_code}
+
+% ------------------------------------------------------------------------------
+% Subsection: Code Examples
+% ------------------------------------------------------------------------------
+\subsection{Programming Examples}
+\label{subsec:code_examples}
+
+\begin{lstlisting}[language=Python, caption={Python function example}, label=lst:python_example]
+def calculate_statistics(data):
+ """
+ Calculate mean and standard deviation of a dataset.
+
+ Args:
+ data (list): List of numerical values
+
+ Returns:
+ tuple: Mean and standard deviation
+ """
+ import numpy as np
+
+ mean = np.mean(data)
+ std = np.std(data)
+
+ return mean, std
+
+# Example usage
+dataset = [1, 2, 3, 4, 5]
+mean, std = calculate_statistics(dataset)
+print(f"Mean: {mean:.2f}, Std: {std:.2f}")
+\end{lstlisting}
+
+Listing~\ref{lst:python_example} demonstrates a simple statistical calculation
+function in Python.
+
+% ==============================================================================
+% Section: Cross-References and Hyperlinks
+% ==============================================================================
+\section{Cross-References}
+\label{sec:cross_references}
+
+% ------------------------------------------------------------------------------
+% Subsection: Internal References
+% ------------------------------------------------------------------------------
+\subsection{Internal References}
+\label{subsec:internal_refs}
+
+This template supports various types of cross-references:
+
+\begin{itemize}
+ \item Chapters: See Chapter~\ref{chap:example_chapter}
+ \item Sections: As discussed in Section~\ref{sec:mathematics}
+ \item Subsections: Details in Subsection~\ref{subsec:text_styles}
+ \item Figures: Shown in Figure~\ref{fig:single_example}
+ \item Tables: Data in Table~\ref{tab:comparison}
+ \item Equations: According to Equation~\eqref{eq:maxwell}
+ \item Pages: On page~\pageref{sec:lists}
+\end{itemize}
+
+% ------------------------------------------------------------------------------
+% Subsection: External Links
+% ------------------------------------------------------------------------------
+\subsection{External Links}
+\label{subsec:external_links}
+
+Links to external resources:
+\begin{itemize}
+ \item URL: \url{https://www.example.com}
+ \item Email: \href{mailto:email@example.com}{email@example.com}
+ \item Linked text: \href{https://www.latex-project.org}{LaTeX Project}
+\end{itemize}
+
+% ==============================================================================
+% Section: Glossary and Acronyms
+% ==============================================================================
+\section{Using Glossary and Acronyms}
+\label{sec:glossary_usage}
+
+% Demonstrate glossary usage
+The \gls{Textkoerper} contains the main content. When using acronyms like
+\acrfull{a:MPG}, they are automatically formatted. Subsequent uses show only
+the short form: \acrshort{a:MPG}.
+
+% Add more glossary entries as needed
+Technical terms should be defined in the glossary file and referenced using
+the appropriate commands throughout the document.
+
+% ==============================================================================
+% Section: Advanced Features
+% ==============================================================================
+\section{Advanced Features}
+\label{sec:advanced}
+
+% ------------------------------------------------------------------------------
+% Subsection: Footnotes and Margin Notes
+% ------------------------------------------------------------------------------
+\subsection{Footnotes}
+\label{subsec:footnotes}
+
+Footnotes provide additional information\footnote{This is an example footnote
+ that contains supplementary information not essential to the main text.} without
+interrupting the flow of the main text.
+
+% ------------------------------------------------------------------------------
+% Subsection: Theorems and Proofs
+% ------------------------------------------------------------------------------
+\subsection{Theorems and Definitions}
+\label{subsec:theorems}
+
+\begin{definition}[Important Concept]
+ A formal definition of an important concept that requires precise
+ mathematical or technical language.
+\end{definition}
+
+\begin{theorem}[Fundamental Theorem]
+ \label{thm:fundamental}
+ Statement of an important theorem that will be proven or referenced.
+\end{theorem}
+
+\begin{proof}
+ The proof follows from the definition and basic principles...
+ \[
+ \text{QED}
+ \]
+\end{proof}
+
+% ==============================================================================
+% Chapter Summary
+% ==============================================================================
+\section{Chapter Summary}
+\label{sec:chapter_summary}
+
+This chapter has demonstrated the key features of the HSRTReport template,
+including:
+
+\begin{itemize}
+ \item Text formatting and typography options
+ \item Mathematical expressions and equations
+ \item Figures, tables, and code listings
+ \item Cross-referencing and citations
+ \item Advanced document features
+\end{itemize}
+
+These elements form the foundation for creating professional academic documents
+using this template. Each feature can be customized further to meet specific
+requirements of your document.
+
+% ==============================================================================
+% End of Example Chapter
+% ==============================================================================
diff --git a/Glossary.tex b/Glossary.tex
index ddf1309..cb7e1b3 100644
--- a/Glossary.tex
+++ b/Glossary.tex
@@ -1,21 +1,91 @@
% !TEX root = Main.tex
+% ==============================================================================
+% Glossary and Acronym Definitions
+% ==============================================================================
+% Description: This file contains all glossary entries and acronyms used in
+% the document. Entries are automatically sorted and formatted.
+% Usage: Reference entries in text using:
+% - \gls{label} for glossary entries
+% - \acrshort{label} for acronym short form
+% - \acrlong{label} for acronym long form
+% - \acrfull{label} for full acronym (short and long)
+% Author: [Your Name]
+% Date: [Date]
+% ==============================================================================
-% ============================================================================
-% GLOSSAR: STIMULATIONSTECHNIKEN (KOMPAKT)
-% ============================================================================
+% ------------------------------------------------------------------------------
+% Glossary Entries
+% ------------------------------------------------------------------------------
+% Define technical terms, concepts, and important words
+% Syntax: \newglossaryentry{label}{
+% name={Display Name},
+% description={Detailed description},
+% plural={Plural form (optional)},
+% genitive={Genitive form (optional)}
+% }
+% ------------------------------------------------------------------------------
-% tES / Transkranielle Elektrostimulation
+% Example: Technical term
\newglossaryentry{Textkoerper}
{
name=Textkörper,
description={
- Bezeichnung für den Bereich innerhalb der Arbeit, in dem die eigentliche Ausarbeitung enthalten ist.
- }
+ Bezeichnung für den Bereich innerhalb der Arbeit, in dem die
+ eigentliche Ausarbeitung enthalten ist. Der Textkörper umfasst
+ alle Kapitel zwischen Einleitung und Fazit.
+ },
genitive=Textkörpers,
plural=Textkörper
}
+% ------------------------------------------------------------------------------
+% Add more glossary entries here
+% ------------------------------------------------------------------------------
+% \newglossaryentry{example}
+% {
+% name=Example,
+% description={An example glossary entry for demonstration purposes}
+% }
+
+% ==============================================================================
+% Acronym Definitions
+% ==============================================================================
+% Define abbreviations and acronyms that appear in the document
+% Syntax: \newacronym{label}{SHORT}{Long Form}
+% ------------------------------------------------------------------------------
+
+% Document-related acronyms
\newacronym{a:Abb}{Abb.}{Abbildung}
-\newacronym{a:MPG}{MPG}{Medizinproduktegesetz}
-\newacronym{a:MS}{MS}{Microsoft®}
\newacronym{a:Tab}{Tab.}{Tabelle}
+
+% Legal and regulatory acronyms
+\newacronym{a:MPG}{MPG}{Medizinproduktegesetz}
+
+% Company and organization acronyms
+\newacronym{a:MS}{MS}{Microsoft®}
+
+% ------------------------------------------------------------------------------
+% Add more acronyms here (alphabetically sorted recommended)
+% ------------------------------------------------------------------------------
+% Technical acronyms
+% \newacronym{a:API}{API}{Application Programming Interface}
+% \newacronym{a:CPU}{CPU}{Central Processing Unit}
+% \newacronym{a:GPU}{GPU}{Graphics Processing Unit}
+
+% Academic acronyms
+% \newacronym{a:BSc}{B.Sc.}{Bachelor of Science}
+% \newacronym{a:MSc}{M.Sc.}{Master of Science}
+% \newacronym{a:PhD}{Ph.D.}{Doctor of Philosophy}
+
+% ==============================================================================
+% Glossary Configuration Notes
+% ==============================================================================
+% - Entries are automatically sorted alphabetically
+% - Unused entries can be included using \glsaddallunused in Main.tex
+% - Multiple glossary types can be defined if needed
+% - Cross-references between entries are supported
+% ==============================================================================
+
+% ==============================================================================
+% End of Glossary Definitions
+% ==============================================================================
diff --git a/LICENSE b/LICENSE
index f288702..7d4f96c 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,674 +1,427 @@
- GNU GENERAL PUBLIC LICENSE
- Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The GNU General Public License is a free, copyleft license for
-software and other kinds of works.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-the GNU General Public License is intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users. We, the Free Software Foundation, use the
-GNU General Public License for most of our software; it applies also to
-any other work released this way by its authors. You can apply it to
-your programs, too.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- To protect your rights, we need to prevent others from denying you
-these rights or asking you to surrender the rights. Therefore, you have
-certain responsibilities if you distribute copies of the software, or if
-you modify it: responsibilities to respect the freedom of others.
-
- For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must pass on to the recipients the same
-freedoms that you received. You must make sure that they, too, receive
-or can get the source code. And you must show them these terms so they
-know their rights.
-
- Developers that use the GNU GPL protect your rights with two steps:
-(1) assert copyright on the software, and (2) offer you this License
-giving you legal permission to copy, distribute and/or modify it.
-
- For the developers' and authors' protection, the GPL clearly explains
-that there is no warranty for this free software. For both users' and
-authors' sake, the GPL requires that modified versions be marked as
-changed, so that their problems will not be attributed erroneously to
-authors of previous versions.
-
- Some devices are designed to deny users access to install or run
-modified versions of the software inside them, although the manufacturer
-can do so. This is fundamentally incompatible with the aim of
-protecting users' freedom to change the software. The systematic
-pattern of such abuse occurs in the area of products for individuals to
-use, which is precisely where it is most unacceptable. Therefore, we
-have designed this version of the GPL to prohibit the practice for those
-products. If such problems arise substantially in other domains, we
-stand ready to extend this provision to those domains in future versions
-of the GPL, as needed to protect the freedom of users.
-
- Finally, every program is threatened constantly by software patents.
-States should not allow patents to restrict development and use of
-software on general-purpose computers, but in those that do, we wish to
-avoid the special danger that patents applied to a free program could
-make it effectively proprietary. To prevent this, the GPL assures that
-patents cannot be used to render the program non-free.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Use with the GNU Affero General Public License.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU Affero General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the special requirements of the GNU Affero General Public License,
-section 13, concerning interaction through a network will apply to the
-combination as such.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU General Public License from time to time. Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
- If the program does terminal interaction, make it output a short
-notice like this when it starts in an interactive mode:
-
- Copyright (C)
- This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it
- under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License. Of course, your program's commands
-might be different; for a GUI interface, you would use an "about box".
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU GPL, see
-.
-
- The GNU General Public License does not permit incorporating your program
-into proprietary programs. If your program is a subroutine library, you
-may consider it more useful to permit linking proprietary applications with
-the library. If this is what you want to do, use the GNU Lesser General
-Public License instead of this License. But first, please read
-.
+Attribution-ShareAlike 4.0 International
+
+=======================================================================
+
+Creative Commons Corporation ("Creative Commons") is not a law firm and
+does not provide legal services or legal advice. Distribution of
+Creative Commons public licenses does not create a lawyer-client or
+other relationship. Creative Commons makes its licenses and related
+information available on an "as-is" basis. Creative Commons gives no
+warranties regarding its licenses, any material licensed under their
+terms and conditions, or any related information. Creative Commons
+disclaims all liability for damages resulting from their use to the
+fullest extent possible.
+
+Using Creative Commons Public Licenses
+
+Creative Commons public licenses provide a standard set of terms and
+conditions that creators and other rights holders may use to share
+original works of authorship and other material subject to copyright
+and certain other rights specified in the public license below. The
+following considerations are for informational purposes only, are not
+exhaustive, and do not form part of our licenses.
+
+ Considerations for licensors: Our public licenses are
+ intended for use by those authorized to give the public
+ permission to use material in ways otherwise restricted by
+ copyright and certain other rights. Our licenses are
+ irrevocable. Licensors should read and understand the terms
+ and conditions of the license they choose before applying it.
+ Licensors should also secure all rights necessary before
+ applying our licenses so that the public can reuse the
+ material as expected. Licensors should clearly mark any
+ material not subject to the license. This includes other CC-
+ licensed material, or material used under an exception or
+ limitation to copyright. More considerations for licensors:
+ wiki.creativecommons.org/Considerations_for_licensors
+
+ Considerations for the public: By using one of our public
+ licenses, a licensor grants the public permission to use the
+ licensed material under specified terms and conditions. If
+ the licensor's permission is not necessary for any reason--for
+ example, because of any applicable exception or limitation to
+ copyright--then that use is not regulated by the license. Our
+ licenses grant only permissions under copyright and certain
+ other rights that a licensor has authority to grant. Use of
+ the licensed material may still be restricted for other
+ reasons, including because others have copyright or other
+ rights in the material. A licensor may make special requests,
+ such as asking that all changes be marked or described.
+ Although not required by our licenses, you are encouraged to
+ respect those requests where reasonable. More considerations
+ for the public:
+ wiki.creativecommons.org/Considerations_for_licensees
+
+=======================================================================
+
+Creative Commons Attribution-ShareAlike 4.0 International Public
+License
+
+By exercising the Licensed Rights (defined below), You accept and agree
+to be bound by the terms and conditions of this Creative Commons
+Attribution-ShareAlike 4.0 International Public License ("Public
+License"). To the extent this Public License may be interpreted as a
+contract, You are granted the Licensed Rights in consideration of Your
+acceptance of these terms and conditions, and the Licensor grants You
+such rights in consideration of benefits the Licensor receives from
+making the Licensed Material available under these terms and
+conditions.
+
+
+Section 1 -- Definitions.
+
+ a. Adapted Material means material subject to Copyright and Similar
+ Rights that is derived from or based upon the Licensed Material
+ and in which the Licensed Material is translated, altered,
+ arranged, transformed, or otherwise modified in a manner requiring
+ permission under the Copyright and Similar Rights held by the
+ Licensor. For purposes of this Public License, where the Licensed
+ Material is a musical work, performance, or sound recording,
+ Adapted Material is always produced where the Licensed Material is
+ synched in timed relation with a moving image.
+
+ b. Adapter's License means the license You apply to Your Copyright
+ and Similar Rights in Your contributions to Adapted Material in
+ accordance with the terms and conditions of this Public License.
+
+ c. BY-SA Compatible License means a license listed at
+ creativecommons.org/compatiblelicenses, approved by Creative
+ Commons as essentially the equivalent of this Public License.
+
+ d. Copyright and Similar Rights means copyright and/or similar rights
+ closely related to copyright including, without limitation,
+ performance, broadcast, sound recording, and Sui Generis Database
+ Rights, without regard to how the rights are labeled or
+ categorized. For purposes of this Public License, the rights
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
+ Rights.
+
+ e. Effective Technological Measures means those measures that, in the
+ absence of proper authority, may not be circumvented under laws
+ fulfilling obligations under Article 11 of the WIPO Copyright
+ Treaty adopted on December 20, 1996, and/or similar international
+ agreements.
+
+ f. Exceptions and Limitations means fair use, fair dealing, and/or
+ any other exception or limitation to Copyright and Similar Rights
+ that applies to Your use of the Licensed Material.
+
+ g. License Elements means the license attributes listed in the name
+ of a Creative Commons Public License. The License Elements of this
+ Public License are Attribution and ShareAlike.
+
+ h. Licensed Material means the artistic or literary work, database,
+ or other material to which the Licensor applied this Public
+ License.
+
+ i. Licensed Rights means the rights granted to You subject to the
+ terms and conditions of this Public License, which are limited to
+ all Copyright and Similar Rights that apply to Your use of the
+ Licensed Material and that the Licensor has authority to license.
+
+ j. Licensor means the individual(s) or entity(ies) granting rights
+ under this Public License.
+
+ k. Share means to provide material to the public by any means or
+ process that requires permission under the Licensed Rights, such
+ as reproduction, public display, public performance, distribution,
+ dissemination, communication, or importation, and to make material
+ available to the public including in ways that members of the
+ public may access the material from a place and at a time
+ individually chosen by them.
+
+ l. Sui Generis Database Rights means rights other than copyright
+ resulting from Directive 96/9/EC of the European Parliament and of
+ the Council of 11 March 1996 on the legal protection of databases,
+ as amended and/or succeeded, as well as other essentially
+ equivalent rights anywhere in the world.
+
+ m. You means the individual or entity exercising the Licensed Rights
+ under this Public License. Your has a corresponding meaning.
+
+
+Section 2 -- Scope.
+
+ a. License grant.
+
+ 1. Subject to the terms and conditions of this Public License,
+ the Licensor hereby grants You a worldwide, royalty-free,
+ non-sublicensable, non-exclusive, irrevocable license to
+ exercise the Licensed Rights in the Licensed Material to:
+
+ a. reproduce and Share the Licensed Material, in whole or
+ in part; and
+
+ b. produce, reproduce, and Share Adapted Material.
+
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
+ Exceptions and Limitations apply to Your use, this Public
+ License does not apply, and You do not need to comply with
+ its terms and conditions.
+
+ 3. Term. The term of this Public License is specified in Section
+ 6(a).
+
+ 4. Media and formats; technical modifications allowed. The
+ Licensor authorizes You to exercise the Licensed Rights in
+ all media and formats whether now known or hereafter created,
+ and to make technical modifications necessary to do so. The
+ Licensor waives and/or agrees not to assert any right or
+ authority to forbid You from making technical modifications
+ necessary to exercise the Licensed Rights, including
+ technical modifications necessary to circumvent Effective
+ Technological Measures. For purposes of this Public License,
+ simply making modifications authorized by this Section 2(a)
+ (4) never produces Adapted Material.
+
+ 5. Downstream recipients.
+
+ a. Offer from the Licensor -- Licensed Material. Every
+ recipient of the Licensed Material automatically
+ receives an offer from the Licensor to exercise the
+ Licensed Rights under the terms and conditions of this
+ Public License.
+
+ b. Additional offer from the Licensor -- Adapted Material.
+ Every recipient of Adapted Material from You
+ automatically receives an offer from the Licensor to
+ exercise the Licensed Rights in the Adapted Material
+ under the conditions of the Adapter's License You apply.
+
+ c. No downstream restrictions. You may not offer or impose
+ any additional or different terms or conditions on, or
+ apply any Effective Technological Measures to, the
+ Licensed Material if doing so restricts exercise of the
+ Licensed Rights by any recipient of the Licensed
+ Material.
+
+ 6. No endorsement. Nothing in this Public License constitutes or
+ may be construed as permission to assert or imply that You
+ are, or that Your use of the Licensed Material is, connected
+ with, or sponsored, endorsed, or granted official status by,
+ the Licensor or others designated to receive attribution as
+ provided in Section 3(a)(1)(A)(i).
+
+ b. Other rights.
+
+ 1. Moral rights, such as the right of integrity, are not
+ licensed under this Public License, nor are publicity,
+ privacy, and/or other similar personality rights; however, to
+ the extent possible, the Licensor waives and/or agrees not to
+ assert any such rights held by the Licensor to the limited
+ extent necessary to allow You to exercise the Licensed
+ Rights, but not otherwise.
+
+ 2. Patent and trademark rights are not licensed under this
+ Public License.
+
+ 3. To the extent possible, the Licensor waives any right to
+ collect royalties from You for the exercise of the Licensed
+ Rights, whether directly or through a collecting society
+ under any voluntary or waivable statutory or compulsory
+ licensing scheme. In all other cases the Licensor expressly
+ reserves any right to collect such royalties.
+
+
+Section 3 -- License Conditions.
+
+Your exercise of the Licensed Rights is expressly made subject to the
+following conditions.
+
+ a. Attribution.
+
+ 1. If You Share the Licensed Material (including in modified
+ form), You must:
+
+ a. retain the following if it is supplied by the Licensor
+ with the Licensed Material:
+
+ i. identification of the creator(s) of the Licensed
+ Material and any others designated to receive
+ attribution, in any reasonable manner requested by
+ the Licensor (including by pseudonym if
+ designated);
+
+ ii. a copyright notice;
+
+ iii. a notice that refers to this Public License;
+
+ iv. a notice that refers to the disclaimer of
+ warranties;
+
+ v. a URI or hyperlink to the Licensed Material to the
+ extent reasonably practicable;
+
+ b. indicate if You modified the Licensed Material and
+ retain an indication of any previous modifications; and
+
+ c. indicate the Licensed Material is licensed under this
+ Public License, and include the text of, or the URI or
+ hyperlink to, this Public License.
+
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
+ reasonable manner based on the medium, means, and context in
+ which You Share the Licensed Material. For example, it may be
+ reasonable to satisfy the conditions by providing a URI or
+ hyperlink to a resource that includes the required
+ information.
+
+ 3. If requested by the Licensor, You must remove any of the
+ information required by Section 3(a)(1)(A) to the extent
+ reasonably practicable.
+
+ b. ShareAlike.
+
+ In addition to the conditions in Section 3(a), if You Share
+ Adapted Material You produce, the following conditions also apply.
+
+ 1. The Adapter's License You apply must be a Creative Commons
+ license with the same License Elements, this version or
+ later, or a BY-SA Compatible License.
+
+ 2. You must include the text of, or the URI or hyperlink to, the
+ Adapter's License You apply. You may satisfy this condition
+ in any reasonable manner based on the medium, means, and
+ context in which You Share Adapted Material.
+
+ 3. You may not offer or impose any additional or different terms
+ or conditions on, or apply any Effective Technological
+ Measures to, Adapted Material that restrict exercise of the
+ rights granted under the Adapter's License You apply.
+
+
+Section 4 -- Sui Generis Database Rights.
+
+Where the Licensed Rights include Sui Generis Database Rights that
+apply to Your use of the Licensed Material:
+
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
+ to extract, reuse, reproduce, and Share all or a substantial
+ portion of the contents of the database;
+
+ b. if You include all or a substantial portion of the database
+ contents in a database in which You have Sui Generis Database
+ Rights, then the database in which You have Sui Generis Database
+ Rights (but not its individual contents) is Adapted Material,
+ including for purposes of Section 3(b); and
+
+ c. You must comply with the conditions in Section 3(a) if You Share
+ all or a substantial portion of the contents of the database.
+
+For the avoidance of doubt, this Section 4 supplements and does not
+replace Your obligations under this Public License where the Licensed
+Rights include other Copyright and Similar Rights.
+
+
+Section 5 -- Disclaimer of Warranties and Limitation of Liability.
+
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
+
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
+
+ c. The disclaimer of warranties and limitation of liability provided
+ above shall be interpreted in a manner that, to the extent
+ possible, most closely approximates an absolute disclaimer and
+ waiver of all liability.
+
+
+Section 6 -- Term and Termination.
+
+ a. This Public License applies for the term of the Copyright and
+ Similar Rights licensed here. However, if You fail to comply with
+ this Public License, then Your rights under this Public License
+ terminate automatically.
+
+ b. Where Your right to use the Licensed Material has terminated under
+ Section 6(a), it reinstates:
+
+ 1. automatically as of the date the violation is cured, provided
+ it is cured within 30 days of Your discovery of the
+ violation; or
+
+ 2. upon express reinstatement by the Licensor.
+
+ For the avoidance of doubt, this Section 6(b) does not affect any
+ right the Licensor may have to seek remedies for Your violations
+ of this Public License.
+
+ c. For the avoidance of doubt, the Licensor may also offer the
+ Licensed Material under separate terms or conditions or stop
+ distributing the Licensed Material at any time; however, doing so
+ will not terminate this Public License.
+
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
+ License.
+
+
+Section 7 -- Other Terms and Conditions.
+
+ a. The Licensor shall not be bound by any additional or different
+ terms or conditions communicated by You unless expressly agreed.
+
+ b. Any arrangements, understandings, or agreements regarding the
+ Licensed Material not stated herein are separate from and
+ independent of the terms and conditions of this Public License.
+
+
+Section 8 -- Interpretation.
+
+ a. For the avoidance of doubt, this Public License does not, and
+ shall not be interpreted to, reduce, limit, restrict, or impose
+ conditions on any use of the Licensed Material that could lawfully
+ be made without permission under this Public License.
+
+ b. To the extent possible, if any provision of this Public License is
+ deemed unenforceable, it shall be automatically reformed to the
+ minimum extent necessary to make it enforceable. If the provision
+ cannot be reformed, it shall be severed from this Public License
+ without affecting the enforceability of the remaining terms and
+ conditions.
+
+ c. No term or condition of this Public License will be waived and no
+ failure to comply consented to unless expressly agreed to by the
+ Licensor.
+
+ d. Nothing in this Public License constitutes or may be interpreted
+ as a limitation upon, or waiver of, any privileges and immunities
+ that apply to the Licensor or You, including from the legal
+ processes of any jurisdiction or authority.
+
+
+=======================================================================
+
+Creative Commons is not a party to its public
+licenses. Notwithstanding, Creative Commons may elect to apply one of
+its public licenses to material it publishes and in those instances
+will be considered the “Licensor.” The text of the Creative Commons
+public licenses is dedicated to the public domain under the CC0 Public
+Domain Dedication. Except for the limited purpose of indicating that
+material is shared under a Creative Commons public license or as
+otherwise permitted by the Creative Commons policies published at
+creativecommons.org/policies, Creative Commons does not authorize the
+use of the trademark "Creative Commons" or any other trademark or logo
+of Creative Commons without its prior written consent including,
+without limitation, in connection with any unauthorized modifications
+to any of its public licenses or any other arrangements,
+understandings, or agreements concerning use of licensed material. For
+the avoidance of doubt, this paragraph does not form part of the
+public licenses.
+
+Creative Commons may be contacted at creativecommons.org.
diff --git a/Main.bib b/Main.bib
index 304935d..3b31b4d 100644
--- a/Main.bib
+++ b/Main.bib
@@ -1,11 +1,43 @@
+% ==============================================================================
+% Bibliography Database
+% ==============================================================================
+% Description: This file contains all bibliographic references for the document.
+% Entries are in BibTeX format and are processed by BibLaTeX/Biber.
+% Format: Standard BibTeX format with additional BibLaTeX fields
+% Usage: Cite entries using \cite{key}, \textcite{key}, \parencite{key}
+% Author: [Your Name]
+% Date: [Date]
+% ==============================================================================
+
+% ------------------------------------------------------------------------------
+% Entry Types Overview
+% ------------------------------------------------------------------------------
+% @article - Journal articles
+% @book - Books
+% @inbook - Chapter or section in a book
+% @incollection - Part of a book with its own title
+% @inproceedings - Conference paper
+% @manual - Technical documentation
+% @mastersthesis - Master's thesis
+% @phdthesis - PhD dissertation
+% @techreport - Technical report
+% @unpublished - Unpublished work
+% @online - Online resources
+% @misc - Everything else
+% ------------------------------------------------------------------------------
+
+% ==============================================================================
+% Journal Articles
+% ==============================================================================
+
@article{ott_einfluss_2021,
title = {Einfluss transkranieller Gleichstromstimulation auf das motorische Lernen bei Patienten mit wiederholten Schädelhirntraumen},
rights = {http://www.fu-berlin.de/sites/refubium/rechtliches/Nutzungsbedingungen},
url = {https://refubium.fu-berlin.de/handle/fub188/31761},
doi = {10.17169/refubium-31493},
- abstract = {Sportler, die repetitiv milde Schädelhirntraumen ({SHT}) erlitten haben, zeigen neben neurokognitiven und motorischen Defizite auch ein erhöhtes Risiko zur Entwicklung einer neurodegenerativen Erkrankung ({McKee} et al. 2009, Tremblay et al. 2012, Deak et al. 2016), wie auch eine erhöhte {GABA}-erge Aktivität mit entsprechender Inhibition der {LTP} (Tremblay et al. 2011). Eine verminderte {LTP} führt bei Personen mit repetitiven {SHTs} zu einer Verminderung des motorischen Lernens (De Beaumont et al. 2012). Die transkranielle Gleichstromstimulation ({tDCS}) ist eine nicht-invasive und sichere Methode zur Neuromodulation (Poreizs et al. 2007) und führt zu einer Verminderung von {GABA}-ergen neuronalen Funktionen (Stagg et al. 2011b, Stagg et al. 2011d). Ziel der vorliegenden Studie ist es zu untersuchen, (1) ob bei jungen klinisch gesunden Probanden, die repetitive milde {SHTs} im Rahmen von sportlichen Aktivitäten erlitten haben, subklinische kognitive und motorische Defizite vorliegen und (2) ob anodale {tDCS} über dem primären Motorkortex zu einer Verbesserung der motorischen Lernfähigkeit führt. Insgesamt wurden 35 junge Probanden (20 gesunde Kontrollprobanden und 15 Probanden mit mindestens zwei milden {SHTs} im Rahmen einer sportlichen Aktivität) untersucht. Neben einer neurokognitiven Testung erfolgten in einem einwöchigen Abstand zwei Sitzungen mit motorischen Testungen. Zuerst wurde jeweils das explizite motorische Lernen, mittels Force Motortask, und dann das implizite Lernen, mittels Serial Reaction Time Task ({SRTT}), getestet. Nach randomisierter Zuteilung erfolgte an einem Termin eine anodale und am anderen Termin eine Scheinstimulation über dem linken primären motorischen Kortex während dem Force Motortask.
-In der Patientengruppe zeigten sich im Vergleich zur Kontrollgruppe signifikante kognitive Defizite im Bereich des Kurzzeitgedächtnisses (p = 0,03) und der verbalen Flüssigkeit (p {\textless} 0,05). Desweiteren wurde durch die anodale Stimulation das explizite Lernen inhibiert (p = 0,02). Anodale offline {tDCS} führt zu einer initialen, nicht signifikanten Verbesserung des impliziten motorischen Lernens. Anodale {tDCS} zeigte in der Kontrollgruppe weder auf das explizierte noch das implizierte Lernen einen Effekt.
+ abstract = {Sportler, die repetitiv milde Schädelhirntraumen ({SHT}) erlitten haben, zeigen neben neurokognitiven und motorischen Defizite auch ein erhöhtes Risiko zur Entwicklung einer neurodegenerativen Erkrankung ({McKee} et al. 2009, Tremblay et al. 2012, Deak et al. 2016), wie auch eine erhöhte {GABA}-erge Aktivität mit entsprechender Inhibition der {LTP} (Tremblay et al. 2011). Eine verminderte {LTP} führt bei Personen mit repetitiven {SHTs} zu einer Verminderung des motorischen Lernens (De Beaumont et al. 2012). Die transkranielle Gleichstromstimulation ({tDCS}) ist eine nicht-invasive und sichere Methode zur Neuromodulation (Poreizs et al. 2007) und führt zu einer Verminderung von {GABA}-ergen neuronalen Funktionen (Stagg et al. 2011b, Stagg et al. 2011d). Ziel der vorliegenden Studie ist es zu untersuchen, (1) ob bei jungen klinisch gesunden Probanden, die repetitive milde {SHTs} im Rahmen von sportlichen Aktivitäten erlitten haben, subklinische kognitive und motorische Defizite vorliegen und (2) ob anodale {tDCS} über dem primären Motorkortex zu einer Verbesserung der motorischen Lernfähigkeit führt. Insgesamt wurden 35 junge Probanden (20 gesunde Kontrollprobanden und 15 Probanden mit mindestens zwei milden {SHTs} im Rahmen einer sportlichen Aktivität) untersucht. Neben einer neurokognitiven Testung erfolgten in einem einwöchigen Abstand zwei Sitzungen mit motorischen Testungen. Zuerst wurde jeweils das explizite motorische Lernen, mittels Force Motortask, und dann das implizite Lernen, mittels Serial Reaction Time Task ({SRTT}), getestet. Nach randomisierter Zuteilung erfolgte an einem Termin eine anodale und am anderen Termin eine Scheinstimulation über dem linken primären motorischen Kortex während dem Force Motortask.
+In der Patientengruppe zeigten sich im Vergleich zur Kontrollgruppe signifikante kognitive Defizite im Bereich des Kurzzeitgedächtnisses (p = 0,03) und der verbalen Flüssigkeit (p {\textless} 0,05). Desweiteren wurde durch die anodale Stimulation das explizite Lernen inhibiert (p = 0,02). Anodale offline {tDCS} führt zu einer initialen, nicht signifikanten Verbesserung des impliziten motorischen Lernens. Anodale {tDCS} zeigte in der Kontrollgruppe weder auf das explizierte noch das implizierte Lernen einen Effekt.
Dies ist die erste Studie, die den stimulatorischen Effekt auf das motorische Lernen von Probanden, die repetitiv milde {SHTs} erlitten haben, untersucht. Es sind somit zukünftig weitere Forschungen zur Pathophysiologie und möglichen chronischen Folgezuständen nach repetitiven milden {SHTs}, sowie zum Einfluss anodaler {tDCS} auf motorische Fähigkeiten in dieser Probandengruppe nötig.},
author = {Ott, Stefanie},
urldate = {2025-10-28},
@@ -157,6 +189,10 @@ Dies ist die erste Studie, die den stimulatorischen Effekt auf das motorische Le
file = {Full Text PDF:/home/frederik/Zotero/storage/BTGZA7MM/Hamilton et al. - 2015 - Neural signal processing and closed-loop control algorithm design for an implanted neural recording.pdf:application/pdf},
}
+% ==============================================================================
+% Meta-Analyses and Reviews
+% ==============================================================================
+
@article{simonsmeier_electrical_2018,
title = {Electrical brain stimulation ({tES}) improves learning more than performance: A meta-analysis},
volume = {84},
@@ -195,6 +231,10 @@ Dies ist die erste Studie, die den stimulatorischen Effekt auf das motorische Le
file = {Full Text PDF:/home/frederik/Zotero/storage/YT8A9PEV/Senkowski et al. - 2022 - Boosting working memory uncovering the differential effects of tDCS and tACS.pdf:application/pdf},
}
+% ==============================================================================
+% Online Resources
+% ==============================================================================
+
@online{noauthor_neurowissenschaft_nodate,
title = {Neurowissenschaft: Hirnmanipulation per Hightech},
url = {https://www.spektrum.de/news/transkranielle-hirnstimulation-als-therapie/1345240},
@@ -275,6 +315,10 @@ These results provide further evidence for the capacity of {tDCS} applied to {rV
file = {ScienceDirect Full Text PDF:/home/frederik/Zotero/storage/63IKSU5D/Gibson et al. - 2020 - Transcranial direct current stimulation facilitates category learning.pdf:application/pdf;ScienceDirect Snapshot:/home/frederik/Zotero/storage/7N74VDSB/S1935861X19304681.html:text/html},
}
+% ==============================================================================
+% Book Chapters and Collections
+% ==============================================================================
+
@incollection{chatterjee_chapter_2013,
title = {Chapter 27 - The ethics of neuroenhancement},
volume = {118},
@@ -516,6 +560,104 @@ We hope that the remote nature of this training program will facilitate increase
pmcid = {PMC5740087},
}
+% ==============================================================================
+% Example Entries for Common Reference Types
+% ==============================================================================
+% Below are template examples for common citation types.
+% Copy and modify these for your own references.
+% ------------------------------------------------------------------------------
+
+% --- Example: Journal Article ---
+@article{example2023,
+ author = {Lastname, Firstname and Coauthor, Name},
+ title = {Example Article Title: Subtitle if Present},
+ journal = {Journal Name},
+ volume = {42},
+ number = {3},
+ pages = {123--145},
+ year = {2023},
+ doi = {10.1234/example.2023.001},
+ url = {https://doi.org/10.1234/example.2023.001},
+ abstract = {Optional abstract text for reference},
+ keywords = {keyword1, keyword2, keyword3}
+}
+
+% --- Example: Book ---
+@book{examplebook2022,
+ author = {Author, Name},
+ title = {Book Title: Complete with Subtitle},
+ subtitle = {Optional Separate Subtitle Field},
+ publisher = {Publisher Name},
+ address = {City, Country},
+ year = {2022},
+ edition = {2},
+ isbn = {978-3-12345-678-9},
+ pages = {350},
+ series = {Book Series Name},
+ volume = {3}
+}
+
+% --- Example: Conference Paper ---
+@inproceedings{conference2023,
+ author = {Speaker, Name and Collaborator, Other},
+ title = {Conference Paper Title},
+ booktitle = {Proceedings of the International Conference Name},
+ year = {2023},
+ editor = {Editor, Name},
+ pages = {45--52},
+ address = {Conference Location},
+ publisher = {ACM},
+ doi = {10.1145/1234567.1234568}
+}
+
+% --- Example: Website ---
+@online{website2024,
+ author = {{Organization Name}},
+ title = {Web Page Title},
+ year = {2024},
+ url = {https://www.example.com/page},
+ urldate = {2024-11-28},
+ note = {Accessed: November 28, 2024}
+}
+
+% --- Example: Thesis ---
+@phdthesis{dissertation2023,
+ author = {Student, Name},
+ title = {Dissertation Title: A Comprehensive Study},
+ school = {University Name},
+ year = {2023},
+ address = {City, Country},
+ type = {PhD thesis},
+ month = {June}
+}
+
+% --- Example: Technical Report ---
+@techreport{report2023,
+ author = {Researcher, Name},
+ title = {Technical Report Title},
+ institution = {Research Institute},
+ year = {2023},
+ type = {Technical Report},
+ number = {TR-2023-001},
+ address = {City, Country},
+ month = {March}
+}
+
+% ==============================================================================
+% Bibliography Notes
+% ==============================================================================
+% - Keep entries sorted alphabetically by citation key for easier maintenance
+% - Use consistent naming convention for keys (e.g., author_keyword_year)
+% - Include DOI when available for better accessibility
+% - Add abstracts for complex papers to aid in reference management
+% - Use keywords field to categorize references (primary, secondary, etc.)
+% - Regular expressions can be used in some fields (check BibLaTeX manual)
+% ==============================================================================
+
+% ==============================================================================
+% End of Bibliography Database
+% ==============================================================================
+
@article{caulfield_optimized_2022,
title = {Optimized electrode positions, size, and current intensity for high-definition transcranial direct current stimulation},
volume = {12},
diff --git a/Main.tex b/Main.tex
index 13aab9f..f6adb55 100644
--- a/Main.tex
+++ b/Main.tex
@@ -1,26 +1,71 @@
+% ==============================================================================
+% Main Document File
+% ==============================================================================
+% Description: Main LaTeX document file for HSRT Report template
+% Author: [Your Name]
+% Date: [Date]
+% ==============================================================================
+
+% ------------------------------------------------------------------------------
+% Document Class Declaration
+% ------------------------------------------------------------------------------
+% The HSRTReport class is based on KOMA-Script's scrreprt class
+% Options:
+% - 11pt: Base font size (alternatives: 10pt, 12pt)
+% - paper=a4: Paper format (alternatives: letter, a5, etc.)
+% - oneside: Single-sided layout (alternative: twoside for duplex printing)
+% - DIV=14: Type area calculation factor (higher = larger text area)
+% - onecolumn: Single column layout (alternative: twocolumn)
+% ------------------------------------------------------------------------------
\documentclass[
- 11pt,
- paper=a4,
- oneside,
- DIV=14,
- onecolumn
+ 11pt, % Base font size
+ paper=a4, % Paper format
+ oneside, % Single-sided printing
+ DIV=14, % Type area calculation
+ onecolumn % Column layout
]{HSRTReport/HSRTReport}
-\input{Preamble}
-\input{Glossary}
+% ------------------------------------------------------------------------------
+% Preamble and Configuration
+% ------------------------------------------------------------------------------
+% Load document-specific settings and configurations
+\input{Preamble} % Document preamble with bibliography and settings
+\input{Glossary} % Glossary and acronym definitions
-% ==== Document ====
+% ==============================================================================
+% Document Body
+% ==============================================================================
\begin{document}
-% Title page
+% ------------------------------------------------------------------------------
+% Title Page
+% ------------------------------------------------------------------------------
+% Generates the title page with university branding and document metadata
+% Configuration in Settings/General.tex
\maketitle
+% ------------------------------------------------------------------------------
+% Document Spacing
+% ------------------------------------------------------------------------------
+% Set line spacing for the main content (1.0 = single spacing)
\setstretch{1.0}
-% ===== Content =====
-\input{Content/00_toc}
-\input{Content/01_content}
-\input{Content/99_bibliography}
-% Add all remaining glossary entries that have not been used
+% ------------------------------------------------------------------------------
+% Content Sections
+% ------------------------------------------------------------------------------
+% Input content files in order of appearance
+\input{Content/00_toc} % Table of contents, lists, and glossaries
+\input{Content/01_content} % Main document content
+\input{Content/99_bibliography} % Bibliography and references
+
+% ------------------------------------------------------------------------------
+% Glossary Processing
+% ------------------------------------------------------------------------------
+% Add all glossary entries to the document, even if not referenced
+% This ensures complete glossary for reference purposes
\glsaddallunused
+
\end{document}
+% ==============================================================================
+% End of Main Document
+% ==============================================================================
diff --git a/Makefile b/Makefile
index 0ba5420..d8daa33 100644
--- a/Makefile
+++ b/Makefile
@@ -1,33 +1,241 @@
-# Makefile for LaTeX documents
+# ==============================================================================
+# Makefile for HSRTReport LaTeX Template
+# ==============================================================================
+# Description: Build automation for LaTeX documents with chapter management
+# Usage: make [target]
+# Author: HSRTReport Template
+# ==============================================================================
-LATEX=latexmk
-BIBTEX=biber
-LATEX_FLAGS=-xelatex -shell-escape -synctex=1 -interaction=nonstopmode
+# ------------------------------------------------------------------------------
+# Configuration
+# ------------------------------------------------------------------------------
+LATEX = latexmk
+LATEX_FLAGS = -xelatex -shell-escape -synctex=1 -interaction=nonstopmode
+BIBER = biber
+MAKEGLOSSARIES = makeglossaries
-SOURCE=Main.tex
-PDF=$(SOURCE:.tex=.pdf)
+# Main document
+SOURCE = Main.tex
+PDF = $(SOURCE:.tex=.pdf)
-OUT_DIR=Output
+# Directories
+BUILD_DIR = Build
+OUT_DIR = Output
+CHAPTERS_DIR = Content/Chapters
+SCRIPTS_DIR = scripts
-BUILD_DIR=Build
+# Output files
+PDF_SOURCE = $(BUILD_DIR)/$(PDF)
+PDF_TARGET = $(OUT_DIR)/$(PDF)
-PDF_SOURCE=$(BUILD_DIR)/$(PDF)
-PDF_TARGET=$(OUT_DIR)/$(PDF)
+# Platform detection for opening PDF
+UNAME := $(shell uname)
+ifeq ($(UNAME), Linux)
+ OPEN_CMD = xdg-open
+else ifeq ($(UNAME), Darwin)
+ OPEN_CMD = open
+else
+ OPEN_CMD = start
+endif
-all: compile
- xdg-open $(PDF_TARGET)
+# Colors for output
+RED = \033[0;31m
+GREEN = \033[0;32m
+YELLOW = \033[1;33m
+BLUE = \033[0;34m
+NC = \033[0m # No Color
-clean:
- git clean -dfX
+# ------------------------------------------------------------------------------
+# Main Targets
+# ------------------------------------------------------------------------------
+.PHONY: all
+all: compile view
+ @echo -e "$(GREEN)✓ Document built and opened successfully$(NC)"
+.PHONY: compile
compile:
-# If not Exists, create 'Build' directory
- [ -d $(BUILD_DIR) ] || mkdir -p $(BUILD_DIR)
- # makeglossaries -o $(BUILD_DIR)/$(SOURCE:.tex=.gls) $(BUILD_DIR)/$(SOURCE:.tex=)
+ @echo -e "$(BLUE)=== Building LaTeX Document ===$(NC)"
+ @[ -d $(BUILD_DIR) ] || mkdir -p $(BUILD_DIR)
+ @echo -e "$(YELLOW)→ Running XeLaTeX...$(NC)"
$(LATEX) $(LATEX_FLAGS) -output-directory=$(BUILD_DIR) $(SOURCE)
-# If not Exists, create 'Output/' directory
- [ -d $(OUT_DIR) ] || mkdir -p $(OUT_DIR)
-# Copy the PDF to the 'Output/' directory
- cp $(PDF_SOURCE) $(PDF_TARGET)
+ @[ -d $(OUT_DIR) ] || mkdir -p $(OUT_DIR)
+ @cp $(PDF_SOURCE) $(PDF_TARGET)
+ @echo -e "$(GREEN)✓ PDF created: $(PDF_TARGET)$(NC)"
-.PHONY: all clean
+.PHONY: full
+full: clean-aux compile
+ @echo -e "$(GREEN)✓ Full build completed$(NC)"
+
+.PHONY: view
+view:
+ @echo -e "$(BLUE)→ Opening PDF...$(NC)"
+ @if [ -f $(PDF_TARGET) ]; then \
+ $(OPEN_CMD) $(PDF_TARGET); \
+ else \
+ echo -e "$(RED)✗ PDF not found. Run 'make compile' first$(NC)"; \
+ exit 1; \
+ fi
+
+# ------------------------------------------------------------------------------
+# Clean Targets
+# ------------------------------------------------------------------------------
+.PHONY: clean
+clean: clean-aux clean-output
+ @echo -e "$(GREEN)✓ All files cleaned$(NC)"
+
+.PHONY: clean-aux
+clean-aux:
+ @echo -e "$(YELLOW)→ Cleaning auxiliary files...$(NC)"
+ @rm -rf $(BUILD_DIR)
+ @rm -f *.aux *.log *.out *.toc *.lof *.lot *.lol *.bbl *.blg *.synctex.gz
+ @rm -f *.fdb_latexmk *.fls *.idx *.ind *.ilg *.glo *.gls *.glg
+ @rm -f Content/*.aux Content/Chapters/*.aux
+ @echo -e "$(GREEN)✓ Auxiliary files cleaned$(NC)"
+
+.PHONY: clean-output
+clean-output:
+ @echo -e "$(YELLOW)→ Cleaning output files...$(NC)"
+ @rm -rf $(OUT_DIR)
+ @echo -e "$(GREEN)✓ Output files cleaned$(NC)"
+
+.PHONY: distclean
+distclean: clean
+ @echo -e "$(YELLOW)→ Removing all generated files...$(NC)"
+ @git clean -dfX 2>/dev/null || rm -rf $(BUILD_DIR) $(OUT_DIR)
+ @echo -e "$(GREEN)✓ Distribution clean completed$(NC)"
+
+# ------------------------------------------------------------------------------
+# Chapter Management Targets
+# ------------------------------------------------------------------------------
+.PHONY: chapter
+chapter:
+ @if [ -z "$(NUM)" ] || [ -z "$(NAME)" ]; then \
+ echo -e "$(RED)✗ Usage: make chapter NUM=02 NAME=methodology$(NC)"; \
+ exit 1; \
+ fi
+ @echo -e "$(BLUE)=== Creating New Chapter ===$(NC)"
+ @$(SCRIPTS_DIR)/create_chapter.sh $(NUM) $(NAME)
+
+.PHONY: chapters
+chapters: list-chapters
+
+.PHONY: list-chapters
+list-chapters:
+ @echo -e "$(BLUE)=== Chapter Overview ===$(NC)"
+ @$(SCRIPTS_DIR)/list_chapters.sh
+
+.PHONY: show-chapter
+show-chapter:
+ @if [ -z "$(NAME)" ]; then \
+ echo -e "$(RED)✗ Usage: make show-chapter NAME=02_methodology$(NC)"; \
+ exit 1; \
+ fi
+ @$(SCRIPTS_DIR)/show_chapter.sh $(NAME)
+
+.PHONY: delete-chapter
+delete-chapter:
+ @if [ -z "$(NAME)" ]; then \
+ echo -e "$(RED)✗ Usage: make delete-chapter NAME=02_methodology$(NC)"; \
+ exit 1; \
+ fi
+ @echo -e "$(YELLOW)⚠ Warning: This will delete the chapter file$(NC)"
+ @$(SCRIPTS_DIR)/delete_chapter.sh $(NAME)
+
+# ------------------------------------------------------------------------------
+# Development Targets
+# ------------------------------------------------------------------------------
+.PHONY: watch
+watch:
+ @echo -e "$(BLUE)=== Starting continuous build ===$(NC)"
+ @echo -e "$(YELLOW)→ Watching for changes... (Ctrl+C to stop)$(NC)"
+ $(LATEX) $(LATEX_FLAGS) -pvc -output-directory=$(BUILD_DIR) $(SOURCE)
+
+.PHONY: draft
+draft:
+ @echo -e "$(BLUE)=== Building draft version ===$(NC)"
+ $(LATEX) -xelatex -interaction=nonstopmode -output-directory=$(BUILD_DIR) $(SOURCE)
+ @[ -d $(OUT_DIR) ] || mkdir -p $(OUT_DIR)
+ @cp $(PDF_SOURCE) $(OUT_DIR)/$(SOURCE:.tex=_draft.pdf)
+ @echo -e "$(GREEN)✓ Draft created: $(OUT_DIR)/$(SOURCE:.tex=_draft.pdf)$(NC)"
+
+# ------------------------------------------------------------------------------
+# Utility Targets
+# ------------------------------------------------------------------------------
+.PHONY: count
+count:
+ @echo -e "$(BLUE)=== Document Statistics ===$(NC)"
+ @echo -n "Chapters: "
+ @ls -1 $(CHAPTERS_DIR)/*.tex 2>/dev/null | wc -l
+ @echo -n "Total lines: "
+ @wc -l $(CHAPTERS_DIR)/*.tex 2>/dev/null | tail -1 | awk '{print $$1}'
+ @echo -n "Approx. words: "
+ @cat $(CHAPTERS_DIR)/*.tex 2>/dev/null | \
+ sed 's/\\[a-zA-Z]*\({[^}]*}\)\?//g' | wc -w
+
+.PHONY: check
+check:
+ @echo -e "$(BLUE)=== Checking Prerequisites ===$(NC)"
+ @command -v xelatex >/dev/null 2>&1 && \
+ echo -e "$(GREEN)✓ XeLaTeX found$(NC)" || \
+ echo -e "$(RED)✗ XeLaTeX not found$(NC)"
+ @command -v biber >/dev/null 2>&1 && \
+ echo -e "$(GREEN)✓ Biber found$(NC)" || \
+ echo -e "$(RED)✗ Biber not found$(NC)"
+ @command -v makeglossaries >/dev/null 2>&1 && \
+ echo -e "$(GREEN)✓ makeglossaries found$(NC)" || \
+ echo -e "$(RED)✗ makeglossaries not found$(NC)"
+ @command -v latexmk >/dev/null 2>&1 && \
+ echo -e "$(GREEN)✓ latexmk found$(NC)" || \
+ echo -e "$(RED)✗ latexmk not found$(NC)"
+
+.PHONY: structure
+structure:
+ @echo -e "$(BLUE)=== Project Structure ===$(NC)"
+ @tree -d -L 2 --charset ascii 2>/dev/null || \
+ find . -type d -maxdepth 2 | sed 's|./||' | sort
+
+# ------------------------------------------------------------------------------
+# Help Target
+# ------------------------------------------------------------------------------
+.PHONY: help
+help:
+ @echo -e "$(BLUE)==============================================================================="
+ @echo "HSRTReport LaTeX Template - Makefile Targets"
+ @echo -e "===============================================================================$(NC)"
+ @echo ""
+ @echo -e "$(GREEN)Main Targets:$(NC)"
+ @echo " make - Build document and open PDF"
+ @echo " make compile - Build the LaTeX document"
+ @echo " make full - Clean and rebuild everything"
+ @echo " make view - Open the PDF file"
+ @echo ""
+ @echo -e "$(GREEN)Chapter Management:$(NC)"
+ @echo " make chapter NUM=02 NAME=methodology - Create a new chapter"
+ @echo " make chapters - List all chapters"
+ @echo " make show-chapter NAME=02_methodology - Display chapter content"
+ @echo " make delete-chapter NAME=02_methodology - Delete a chapter (with backup)"
+ @echo ""
+ @echo -e "$(GREEN)Cleaning:$(NC)"
+ @echo " make clean - Remove all generated files"
+ @echo " make clean-aux - Remove auxiliary files only"
+ @echo " make clean-output - Remove output files only"
+ @echo " make distclean - Remove everything (git clean)"
+ @echo ""
+ @echo -e "$(GREEN)Development:$(NC)"
+ @echo " make watch - Continuous compilation on file changes"
+ @echo " make draft - Quick draft compilation"
+ @echo ""
+ @echo -e "$(GREEN)Utilities:$(NC)"
+ @echo " make count - Show document statistics"
+ @echo " make check - Check for required tools"
+ @echo " make structure - Show project structure"
+ @echo " make help - Show this help message"
+ @echo ""
+ @echo -e "$(YELLOW)Examples:$(NC)"
+ @echo " make chapter NUM=01 NAME=introduction"
+ @echo " make chapter NUM=02 NAME=literature_review"
+ @echo " make show-chapter NAME=01_introduction"
+ @echo ""
+
+# Default target
+.DEFAULT_GOAL := help
diff --git a/Preamble.tex b/Preamble.tex
index ebd9a1d..2ef9384 100644
--- a/Preamble.tex
+++ b/Preamble.tex
@@ -3,18 +3,51 @@
% Document Preamble
% ==============================================================================
% Description: Document-specific configuration and settings
+% This file contains all document-specific configurations that
+% customize the HSRTReport class for your particular document
+% Author: [Your Name]
+% Date: [Date]
% ==============================================================================
% ------------------------------------------------------------------------------
% Bibliography Configuration
% ------------------------------------------------------------------------------
+% Configure BibLaTeX bibliography management
+% The bibliography file (Main.bib) contains all references in BibTeX format
+% Additional .bib files can be added with multiple \addbibresource commands
+% ------------------------------------------------------------------------------
\addbibresource{Main.bib}
% ------------------------------------------------------------------------------
-% Document Settings
+% Document Settings Import
+% ------------------------------------------------------------------------------
+% Load document-specific settings from external files
+% This modular approach keeps the preamble clean and organized
+% ------------------------------------------------------------------------------
+\input{Settings/General} % General document settings (title, author, etc.)
+\input{Settings/Logos} % Logo configuration and positioning
+
+% ------------------------------------------------------------------------------
+% Custom Commands and Macros (Optional)
+% ------------------------------------------------------------------------------
+% Add your custom LaTeX commands here
+% Example: \newcommand{\mycommand}[1]{#1}
+% ------------------------------------------------------------------------------
+
+% ------------------------------------------------------------------------------
+% Additional Package Loading (Optional)
+% ------------------------------------------------------------------------------
+% Load additional packages not included in the HSRTReport class
+% Note: Most common packages are already loaded by the class
+% Example: \usepackage{mypackage}
+% ------------------------------------------------------------------------------
+
+% ------------------------------------------------------------------------------
+% Package Configuration (Optional)
+% ------------------------------------------------------------------------------
+% Configure packages that require specific settings
+% Example: \setpackageoption{value}
% ------------------------------------------------------------------------------
-\input{Settings/General}
-\input{Settings/Logos}
% ==============================================================================
% End of Preamble
diff --git a/README.md b/README.md
index 8023768..367244c 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,293 @@
-# LaTeX-Base
+# HSRTReport LaTeX Template
+A professional LaTeX report template for academic papers and theses at the University of Applied Sciences Reutlingen (Hochschule Reutlingen).
+
+## 📋 Table of Contents
+
+- [Overview](#overview)
+- [Features](#features)
+- [Prerequisites](#prerequisites)
+- [Installation](#installation)
+- [Project Structure](#project-structure)
+- [Usage](#usage)
+- [Document Class Options](#document-class-options)
+- [Customization](#customization)
+- [Building the Document](#building-the-document)
+- [Troubleshooting](#troubleshooting)
+- [Contributing](#contributing)
+- [License](#license)
+
+## 📖 Overview
+
+The HSRTReport class is a customized LaTeX document class based on KOMA-Script's `scrreprt` class, specifically designed for creating professional academic reports, seminar papers, and bachelor/master theses at the University of Applied Sciences Reutlingen. It provides a consistent, professional layout with minimal configuration required.
+
+## ✨ Features
+
+- **Professional Typography**: Configured for optimal readability with proper font settings
+- **Automatic Title Page Generation**: Customizable title page with university branding
+- **Bibliography Management**: Integrated BibLaTeX support for citations
+- **Glossary Support**: Built-in glossary and acronym management
+- **Code Highlighting**: Syntax highlighting for source code listings
+- **Word Count**: Automatic word counting functionality
+- **Cross-referencing**: Smart referencing with hyperref
+
+## 🔧 Prerequisites
+
+### Required Software
+
+- **XeLaTeX**: This template requires XeLaTeX for compilation (included in most TeX distributions)
+- **TeX Distribution**: One of the following:
+ - [TeX Live](https://www.tug.org/texlive/) (Linux/Windows/macOS)
+ - [MiKTeX](https://miktex.org/) (Windows)
+ - [MacTeX](https://www.tug.org/mactex/) (macOS)
+- **GNU make**: Automates compilation and cleaning tasks
+
+### Required LaTeX Packages
+
+The template automatically loads all necessary packages. Key dependencies include:
+- KOMA-Script bundle
+- BibLaTeX with Biber backend
+- glossaries-extra
+- fontspec (for font management)
+- TikZ (for graphics)
+- listings (for code)
+
+## 📁 Project Structure
+
+```
+SAT-WiSe-25-26/
+│
+├── HSRTReport/ # Document class files
+│ ├── HSRTReport.cls # Main class definition
+│ ├── Assets/ # Fonts and images
+│ │ ├── Fonts/ # Custom fonts
+│ │ └── Images/ # Logo and graphics
+│ ├── Config/ # Configuration modules
+│ │ ├── Fonts.tex # Font settings
+│ │ ├── PageSetup.tex # Page layout
+│ │ └── ... # Other configurations
+│ ├── Imports/ # Package imports
+│ │ ├── Core.tex # Core packages
+│ │ ├── Document.tex # Document structure
+│ │ └── ... # Other imports
+│ ├── Modules/ # Feature modules
+│ │ ├── Content/ # Content-related features
+│ │ ├── Layout/ # Layout features
+│ │ └── Tools/ # Utility tools
+│ └── Pages/ # Page templates
+│ └── Titlepage.tex # Title page definition
+│
+├── Content/ # Document content
+│ ├── 00_toc.tex # Table of contents and lists
+│ ├── 01_content.tex # Chapter loader (auto-managed)
+│ ├── 99_bibliography.tex # Bibliography
+│ ├── Chapters/ # Individual chapter files
+│ │ ├── 01_introduction.tex
+│ │ ├── example_chapter.tex
+│ │ └── ...
+│ └── Images/ # Document images
+│
+├── Settings/ # Document settings
+│ ├── General.tex # General settings
+│ └── Logos.tex # Logo configuration
+│
+├── scripts/ # Chapter management scripts
+│ ├── create_chapter.sh # Create new chapters
+│ ├── list_chapters.sh # List all chapters
+│ ├── delete_chapter.sh # Delete chapters
+│ └── show_chapter.sh # View chapter content
+│
+├── Main.tex # Main document file
+├── Preamble.tex # Document preamble
+├── Glossary.tex # Glossary definitions
+├── Main.bib # Bibliography database
+├── Makefile # Build automation
+├── .latexmkrc # Latexmk configuration
+└── QUICKSTART.md # Quick start guide
+```
+
+## 📝 Usage
+
+### Basic Document Setup
+
+1. **Edit `Main.tex`** to configure document class options:
+ ```latex
+ \documentclass[
+ 11pt, % Font size (10pt, 11pt, 12pt)
+ paper=a4, % Paper size
+ oneside, % Single-sided (use twoside for double)
+ DIV=14, % Page layout calculation
+ onecolumn % Single column layout
+ ]{HSRTReport/HSRTReport}
+ ```
+
+2. **Configure document metadata** in `Settings/General.tex`:
+ ```latex
+ % Document title
+ \title{Your Document Title}
+
+ % Title page information
+ \AddTitlePageDataLine{Thema}{Your Topic}
+ \AddTitlePageDataLine{Vorgelegt von}{Your Name}
+ \AddTitlePageDataLine{Studiengang}{Your Study Program}
+ % ... additional fields
+ ```
+
+3. **Add your content** using one of these methods:
+ - **Automatic (Recommended)**: Use scripts to manage chapters
+ ```bash
+ ./scripts/create_chapter.sh 02 methodology
+ ./scripts/create_chapter.sh 03 results
+ ./scripts/list_chapters.sh
+ ```
+ - **Manual**: Create files in `Content/Chapters/` and add them to `Content/01_content.tex`
+
+4. **Manage bibliography** in `Main.bib` using BibTeX format
+
+5. **Define glossary entries** in `Glossary.tex`:
+ ```latex
+ \newglossaryentry{term}{
+ name=Term,
+ description={Description of the term}
+ }
+
+ \newacronym{abbr}{ABBR}{Full Form of Abbreviation}
+ ```
+
+## ⚙️ Document Class Options
+
+The HSRTReport class accepts all standard KOMA-Script `scrreprt` options plus:
+
+| Option | Description | Values |
+|--------|-------------|---------|
+| `paper` | Paper size | `a4`, `letter`, etc. |
+| `fontsize` | Base font size | `10pt`, `11pt`, `12pt` |
+| `oneside`/`twoside` | Page layout | Single or double-sided |
+| `DIV` | Type area calculation | Integer (12-16 recommended) |
+| `onecolumn`/`twocolumn` | Column layout | Single or double column |
+
+## 🎨 Customization
+
+### Modifying the Title Page
+
+Edit `Settings/General.tex` to customize title page fields:
+```latex
+\AddTitlePageDataLine{Field Name}{Field Content}
+\AddTitlePageDataSpace{5pt} % Add vertical space
+```
+
+### Adding Custom Packages
+
+Add custom packages to `Preamble.tex`:
+```latex
+\usepackage{yourpackage}
+\yourpackagesetup{options}
+```
+
+### Changing Fonts
+
+The template uses custom fonts defined in `HSRTReport/Config/Fonts.tex`. Modify this file to change fonts template-wide.
+
+### Creating Custom Commands
+
+Add custom commands to `Preamble.tex`:
+```latex
+\newcommand{\mycommand}[1]{#1}
+```
+
+## 📚 Chapter Management
+
+### Automatic Chapter Management (Recommended)
+
+The template includes scripts for efficient chapter management:
+
+#### Create a New Chapter
+```bash
+./scripts/create_chapter.sh 02 methodology
+```
+This creates `Content/Chapters/02_methodology.tex` with a template structure and automatically adds it to the document.
+
+#### List All Chapters
+```bash
+./scripts/list_chapters.sh
+```
+Shows all chapters and their inclusion status in the document.
+
+#### View Chapter Content
+```bash
+./scripts/show_chapter.sh 02_methodology --info
+./scripts/show_chapter.sh 02_methodology --structure
+```
+
+#### Delete a Chapter
+```bash
+./scripts/delete_chapter.sh 02_methodology
+```
+Removes the chapter and creates a backup in `.chapter_backups/`.
+
+### Manual Chapter Management
+
+1. Create a file in `Content/Chapters/`
+2. Add `\input{Content/Chapters/your_chapter}` to the marked section in `Content/01_content.tex`
+
+## 🔨 Building the Document
+
+### Using Make (Recommended)
+
+```bash
+# Full build with bibliography and glossary – open after
+make
+
+# Just build
+make compile
+
+# Clean auxiliary files
+make clean
+```
+
+### Using latexmk
+
+```bash
+latexmk -xelatex -bibtex Main.tex
+```
+
+## 🐛 Troubleshooting
+
+### Common Issues
+
+1. **"This class can only be used with XeLaTeX" error**
+ - Solution: Ensure you're using XeLaTeX, not pdfLaTeX
+ - Check your editor's compiler settings
+
+2. **Bibliography not appearing**
+ - Run `biber Main` after the first XeLaTeX compilation
+ - Check for errors in `Main.bib`
+
+3. **Glossary entries not showing**
+ - Run `makeglossaries Main` after adding new entries
+ - Ensure entries are referenced in the document using `\gls{term}`
+
+## 📄 License
+
+This template is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0).
+
+- **Original Author**: Martin Oswald (Zürich University of Applied Sciences)
+- **Modified by**: Frederik Beimgraben (University of Applied Sciences Reutlingen)
+
+See [LICENSE](LICENSE) for details.
+
+## 📧 Support
+
+For questions, issues, or suggestions:
+- Open an issue on GitHub
+- Contact the maintainer at [frederik@beimgraben.net](mailto:frederik@beimgraben.net)
+
+## 🙏 Acknowledgments
+
+- Martin Oswald for the original ZHAWReport class
+- KOMA-Script team for the excellent document classes
+- University of Applied Sciences Reutlingen – [Reutlingen University](https://reutlingen-university.de)
+
+---
+
+*Last updated: October 2025*
diff --git a/Settings/General.tex b/Settings/General.tex
index f4d6591..58b3165 100644
--- a/Settings/General.tex
+++ b/Settings/General.tex
@@ -2,60 +2,136 @@
% ==============================================================================
% Document-Specific General Settings
% ==============================================================================
-% Description: Title, author, abstract, and other document metadata
+% Description: This file contains all document-specific settings including
+% title, author information, abstract, keywords, and other
+% metadata required for the title page and document properties.
+% Author: [Your Name]
+% Date: [Date]
% ==============================================================================
% ------------------------------------------------------------------------------
% Watermark and Date Configuration
% ------------------------------------------------------------------------------
-% Meeting date
+% Configure document watermark and creation date
+% These settings affect the document's visual presentation and metadata
+% ------------------------------------------------------------------------------
+
+% Watermark text (leave empty for no watermark)
+% Example: \newcommand{\waterMarkText}{DRAFT}
+% Example: \newcommand{\waterMarkText}{CONFIDENTIAL}
\newcommand{\waterMarkText}{}
-% Current date and time
+% Document creation date
+% Format: DD.MM.YYYY
+% This date appears on the title page and in document metadata
\createdon{XX.XX.20XX}
% ------------------------------------------------------------------------------
% Document Title
% ------------------------------------------------------------------------------
+% Main title of the document
+% This appears on the title page and in PDF metadata
+% For multi-line titles, use \\ for line breaks
+% ------------------------------------------------------------------------------
\title{Vorgaben zur Formatierung der Seminararbeit}
% ------------------------------------------------------------------------------
% Title Page Data Fields
% ------------------------------------------------------------------------------
+% Configure all fields that appear on the title page
+% Use \AddTitlePageDataLine{Label}{Content} for each field
+% Use \AddTitlePageDataSpace{dimension} to add vertical spacing
+% Use \newline within content for line breaks
+% ------------------------------------------------------------------------------
+
+% --- Document Topic ---
+% The main topic or theme of the document
\AddTitlePageDataLine{Thema}{
Thema-XXX: \newline
Vorgaben zur Formatierung der Seminararbeit
}
+
+% Add spacing between sections
\AddTitlePageDataSpace{5pt}
+
+% --- Author Information ---
+% Student name, semester, and contact information
\AddTitlePageDataLine{Vorgelegt von}{
Hans Maria Muster \newline
X. Fachsemester \newline
\href{mailto:hans-maria.muster@student.hs-reutlingen.de}{hans-maria.muster@student.hs-reutlingen.de}
}
+
+% Add spacing
\AddTitlePageDataSpace{5pt}
+
+% --- Submission Date ---
+% Date when the document is submitted
+% Format: DD.MM.YYYY
\AddTitlePageDataLine{Vorgelegt am}{XX.XX.20XX}
+
+% Add spacing
\AddTitlePageDataSpace{5pt}
+
+% --- Academic Information ---
+% Study program and course details
\AddTitlePageDataLine{Studiengang}{Medizinisch Technische Informatik B.Sc.}
+
+% Module/Course information
\AddTitlePageDataLine{Modul}{
METI6.3 \newline
Seminar Ausgewählter Themen der Medizinisch-Technischen Informatik
}
-\AddTitlePageDataLine{Dozent:in}{Prof. Dr. Sven Steddin}
-\AddTitlePageDataLine{Semester}{Wintersemester 20XX/20XX}
-\AddTitlePageDataSpace{5pt}
-\AddTitlePageDataLine{Wortanzahl}{\quickwordcount{Content/01_content}} % !!! Only 01_content.tex !!!
+% --- Supervisor Information ---
+% Professor or supervisor name
+\AddTitlePageDataLine{Dozent:in}{Prof. Dr. Sven Steddin}
+
+% --- Semester Information ---
+% Academic semester (e.g., Wintersemester 2024/2025)
+\AddTitlePageDataLine{Semester}{Wintersemester 20XX/20XX}
+
+% Add spacing
+\AddTitlePageDataSpace{5pt}
+
+% --- Word Count ---
+% Automatic word count for the main content
+% Note: This only counts words in the specified file (Content/01_content.tex)
+% For multiple files, use \quickwordcount{file1,file2,file3}
+\AddTitlePageDataLine{Wortanzahl}{\quickwordcount{Content/01_content}}
% ------------------------------------------------------------------------------
% Abstract
% ------------------------------------------------------------------------------
+% The abstract provides a concise summary of the document
+% It should include:
+% - Research objective/hypothesis
+% - Methodology used
+% - Key findings/results
+% - Main conclusions
+% Keep it brief (typically 150-250 words)
+% ------------------------------------------------------------------------------
\newcommand{\titlepageabstract}{%
- Das Abstract beschreibt in wenigen Sätzen die Zielsetzung und das Ergebnis der Ausarbeitung. Das Abstract muss sich vollständig auf der Titelseite befinden. Die Zeichensatzformatierung wird in einem eigenen Absatz beschrieben Das Abstract soll es den Lesern:innen ermöglichen, innerhalb von wenigen Augenblicken zu erfassen, welcher Inhalt hinter der Überschrift steckt und ob das Thema, aus Sicht der Leser:innen, zur weiteren Bearbeitung lohnt. Das Abstract ist keine verbale Beschreibung des Inhaltsverzeichnisses, sondern gibt kurz und knapp z.B. die Zielsetzung (z.B. Hypothese), die eingesetzten Methoden und die erzielten Ergebnisse / Erkenntnisse bekannt. Weitere Hinweise finden Sie außerdem im Vorlesungsskript.
+ Das Abstract beschreibt in wenigen Sätzen die Zielsetzung und das Ergebnis
+ der Ausarbeitung. Das Abstract muss sich vollständig auf der Titelseite
+ befinden. Die Zeichensatzformatierung wird in einem eigenen Absatz
+ beschrieben. Das Abstract soll es den Lesern:innen ermöglichen, innerhalb
+ von wenigen Augenblicken zu erfassen, welcher Inhalt hinter der Überschrift
+ steckt und ob das Thema, aus Sicht der Leser:innen, zur weiteren Bearbeitung
+ lohnt. Das Abstract ist keine verbale Beschreibung des Inhaltsverzeichnisses,
+ sondern gibt kurz und knapp z.B. die Zielsetzung (z.B. Hypothese), die
+ eingesetzten Methoden und die erzielten Ergebnisse / Erkenntnisse bekannt.
+ Weitere Hinweise finden Sie außerdem im Vorlesungsskript.
}
% ------------------------------------------------------------------------------
% Keywords
% ------------------------------------------------------------------------------
+% Keywords help categorize and index the document
+% Separate keywords with commas
+% Choose 3-7 relevant keywords that describe the main topics
+% These appear on the title page and in PDF metadata
+% ------------------------------------------------------------------------------
\newcommand{\titlepagekeywords}{%
Seminararbeit, wissenschaftliche Ausarbeitung, Bachelor-Thesis, Studium, Plagiat
}
@@ -63,15 +139,53 @@
% ------------------------------------------------------------------------------
% List of Equations Configuration
% ------------------------------------------------------------------------------
+% Customize the names for equation-related elements
+% These affect how equations are labeled in lists and references
+% ------------------------------------------------------------------------------
+
+% Name for the list of equations (appears as chapter/section title)
\renewcommand{\listequationsname}{Formeln und Gleichungen}
+
+% Name for individual equation references
\renewcommand{\equationname}{Formel}
% ------------------------------------------------------------------------------
% Paragraph Configuration
% ------------------------------------------------------------------------------
-% Disable indentation
+% Configure paragraph formatting throughout the document
+% ------------------------------------------------------------------------------
+
+% Paragraph indentation
+% 0pt = no indentation (German standard for academic texts)
+% >0pt = indent first line of each paragraph (English standard)
\setlength{\parindent}{0pt}
+% Paragraph spacing (space between paragraphs)
+% Default is usually appropriate, but can be adjusted if needed
+% Example: \setlength{\parskip}{6pt plus 2pt minus 1pt}
+
+% ------------------------------------------------------------------------------
+% Optional: Custom Author Commands
+% ------------------------------------------------------------------------------
+% If you need multiple authors or additional author information,
+% you can define custom commands here:
+%
+% \newcommand{\authorOne}{First Author}
+% \newcommand{\authorTwo}{Second Author}
+% \newcommand{\matriculationNumber}{12345678}
+% \newcommand{\studentID}{S-12345}
+% ------------------------------------------------------------------------------
+
+% ------------------------------------------------------------------------------
+% Optional: Document Version Control
+% ------------------------------------------------------------------------------
+% For tracking document versions during development
+%
+% \newcommand{\documentVersion}{1.0}
+% \newcommand{\lastModified}{\today}
+% \newcommand{\reviewStatus}{Draft}
+% ------------------------------------------------------------------------------
+
% ==============================================================================
% End of General Settings
% ==============================================================================
diff --git a/Settings/Logos.tex b/Settings/Logos.tex
index e00f974..12ee57c 100644
--- a/Settings/Logos.tex
+++ b/Settings/Logos.tex
@@ -2,24 +2,97 @@
% ==============================================================================
% Logo Configuration
% ==============================================================================
-% Description: Document-specific logo selection and configuration
+% Description: This file configures which logos appear on the title page and
+% their positioning. Multiple logos can be displayed simultaneously.
+% The AddLogo command handles logo placement and scaling.
+% Usage: Uncomment the desired logo(s) and adjust parameters as needed.
+% Author: [Your Name]
+% Date: [Date]
% ==============================================================================
+% ------------------------------------------------------------------------------
+% Logo Configuration Syntax
+% ------------------------------------------------------------------------------
+% \AddLogo{LogoName}{ScaleX}{ScaleY}{Format}
+%
+% Parameters:
+% LogoName - Name of the logo file (without extension)
+% ScaleX - Horizontal scaling factor (1.0 = original width)
+% ScaleY - Vertical scaling factor (1.0 = original height)
+% Format - File format (png, svg, pdf, jpg)
+%
+% Logo files must be placed in: HSRTReport/Assets/Images/
+% ------------------------------------------------------------------------------
+
% ------------------------------------------------------------------------------
% Available Logos
% ------------------------------------------------------------------------------
-% STUPA Logo
+% Below are pre-configured logos for various departments and organizations.
+% Uncomment (remove the % at the beginning) the logo(s) you want to use.
+% Multiple logos can be active simultaneously and will be arranged automatically.
+% ------------------------------------------------------------------------------
+
+% --- Student Parliament (STUPA) Logo ---
+% Use this for student organization related documents
+% Scale: 110% width, 70% height
%\AddLogo{STUPA}{1.1}{0.7}{png}
-% INF Logo (Informatik Kombiniert)
+% --- Informatics Department Logo (Combined Version) ---
+% Standard logo for informatics department documents
+% Scale: 90% width, 100% height
+% This logo is active by default
\AddLogo{INF_Kombiniert}{0.9}{1}{svg}
-% HSRT Logo (Hochschule Reutlingen)
+% --- Hochschule Reutlingen (HSRT) Main Logo ---
+% Official university logo for formal documents
+% Scale: 170% width, 100% height
+% Uncomment for official university submissions
% \AddLogo{HSRT}{1.7}{1}{png}
-% METI Logo
+% --- Medical Technical Informatics (METI) Logo ---
+% Specific logo for METI study program
+% Scale: 100% width, 50% height
+% Uncomment for METI-specific documents
% \AddLogo{METI}{1.0}{0.5}{png}
+% ------------------------------------------------------------------------------
+% Custom Logo Addition
+% ------------------------------------------------------------------------------
+% To add your own custom logo:
+% 1. Place the logo file in HSRTReport/Assets/Images/
+% 2. Add a configuration line following this pattern:
+% \AddLogo{YourLogoName}{ScaleX}{ScaleY}{Format}
+%
+% Example for a company logo:
+% \AddLogo{CompanyLogo}{1.2}{1.2}{pdf}
+%
+% Example for a research group logo:
+% \AddLogo{ResearchGroup}{0.8}{0.8}{png}
+% ------------------------------------------------------------------------------
+
+% ------------------------------------------------------------------------------
+% Logo Positioning Notes
+% ------------------------------------------------------------------------------
+% - Logos are automatically positioned on the title page
+% - Multiple logos are arranged in a grid layout
+% - The order of \AddLogo commands determines the display order
+% - Scaling factors can be adjusted for optimal visual balance
+% - SVG format is recommended for scalability
+% - PNG format is suitable for raster images
+% - PDF format provides best quality for vector graphics
+% ------------------------------------------------------------------------------
+
+% ------------------------------------------------------------------------------
+% Troubleshooting
+% ------------------------------------------------------------------------------
+% If a logo doesn't appear:
+% 1. Check that the file exists in HSRTReport/Assets/Images/
+% 2. Verify the file extension matches the format parameter
+% 3. Ensure the \AddLogo line is not commented out
+% 4. Check for typos in the logo name
+% 5. Try different scaling factors if the logo appears too small/large
+% ------------------------------------------------------------------------------
+
% ==============================================================================
% End of Logo Configuration
% ==============================================================================
diff --git a/scripts/create_chapter.sh b/scripts/create_chapter.sh
new file mode 100755
index 0000000..c873d36
--- /dev/null
+++ b/scripts/create_chapter.sh
@@ -0,0 +1,250 @@
+#!/bin/bash
+
+# ==============================================================================
+# Create Chapter Script
+# ==============================================================================
+# Description: Creates a new chapter file and automatically adds it to the
+# content loader (01_content.tex)
+# Usage: ./scripts/create_chapter.sh
+# Example: ./scripts/create_chapter.sh 02 methodology
+# Author: HSRTReport Template
+# ==============================================================================
+
+set -e # Exit on error
+
+# ------------------------------------------------------------------------------
+# Configuration
+# ------------------------------------------------------------------------------
+SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
+CHAPTERS_DIR="$PROJECT_ROOT/Content/Chapters"
+CONTENT_FILE="$PROJECT_ROOT/Content/01_content.tex"
+TEMPLATE_FILE="$CHAPTERS_DIR/example_chapter.tex"
+
+# Colors for output
+RED='\033[0;31m'
+GREEN='\033[0;32m'
+YELLOW='\033[1;33m'
+NC='\033[0m' # No Color
+
+# ------------------------------------------------------------------------------
+# Functions
+# ------------------------------------------------------------------------------
+
+print_usage() {
+ echo "Usage: $0 "
+ echo ""
+ echo "Creates a new chapter file and adds it to the content loader."
+ echo ""
+ echo "Arguments:"
+ echo " chapter_number Two-digit number (e.g., 02, 03, 10)"
+ echo " chapter_name Name without spaces (e.g., methodology, results)"
+ echo ""
+ echo "Example:"
+ echo " $0 02 methodology"
+ echo " This creates: Content/Chapters/02_methodology.tex"
+}
+
+print_error() {
+ echo -e "${RED}Error: $1${NC}" >&2
+}
+
+print_success() {
+ echo -e "${GREEN}✓ $1${NC}"
+}
+
+print_info() {
+ echo -e "${YELLOW}ℹ $1${NC}"
+}
+
+capitalize_first() {
+ echo "$1" | sed 's/\b\(.\)/\U\1/g'
+}
+
+# ------------------------------------------------------------------------------
+# Input Validation
+# ------------------------------------------------------------------------------
+
+# Check if correct number of arguments
+if [ $# -ne 2 ]; then
+ print_error "Invalid number of arguments"
+ print_usage
+ exit 1
+fi
+
+CHAPTER_NUM="$1"
+CHAPTER_NAME="$2"
+
+# Validate chapter number (should be 2 digits)
+if ! [[ "$CHAPTER_NUM" =~ ^[0-9]{2}$ ]]; then
+ print_error "Chapter number must be exactly 2 digits (e.g., 02, 10)"
+ exit 1
+fi
+
+# Validate chapter name (alphanumeric and underscores only)
+if ! [[ "$CHAPTER_NAME" =~ ^[a-zA-Z][a-zA-Z0-9_]*$ ]]; then
+ print_error "Chapter name must start with a letter and contain only letters, numbers, and underscores"
+ exit 1
+fi
+
+# ------------------------------------------------------------------------------
+# File Creation
+# ------------------------------------------------------------------------------
+
+CHAPTER_FILE="$CHAPTERS_DIR/${CHAPTER_NUM}_${CHAPTER_NAME}.tex"
+CHAPTER_INPUT_LINE="\\\\input{Content/Chapters/${CHAPTER_NUM}_${CHAPTER_NAME}}"
+
+# Check if file already exists
+if [ -f "$CHAPTER_FILE" ]; then
+ print_error "Chapter file already exists: $CHAPTER_FILE"
+ echo "Do you want to overwrite it? (y/N)"
+ read -r response
+ if [[ ! "$response" =~ ^[Yy]$ ]]; then
+ echo "Aborted."
+ exit 1
+ fi
+fi
+
+# Create chapter file with template content
+print_info "Creating chapter file: ${CHAPTER_NUM}_${CHAPTER_NAME}.tex"
+
+CHAPTER_TITLE=$(capitalize_first "$CHAPTER_NAME" | tr '_' ' ')
+
+cat > "$CHAPTER_FILE" << 'EOF'
+% !TEX root = ../../Main.tex
+% ==============================================================================
+% Chapter: CHAPTER_TITLE_PLACEHOLDER
+% ==============================================================================
+% Description: [Add chapter description here]
+% Author: [Your Name]
+% Date: CURRENT_DATE
+% ==============================================================================
+
+% ------------------------------------------------------------------------------
+% Chapter Declaration
+% ------------------------------------------------------------------------------
+\chapter{CHAPTER_TITLE_PLACEHOLDER}
+\label{chap:CHAPTER_LABEL_PLACEHOLDER}
+
+% ------------------------------------------------------------------------------
+% Introduction
+% ------------------------------------------------------------------------------
+% Begin with an introduction to the chapter's content
+% ------------------------------------------------------------------------------
+
+[Introduction text for this chapter goes here. Provide an overview of what
+will be covered in this chapter.]
+
+% ------------------------------------------------------------------------------
+% Section: First Section
+% ------------------------------------------------------------------------------
+\section{First Section}
+\label{sec:CHAPTER_LABEL_PLACEHOLDER_first_section}
+
+[Content for the first section goes here.]
+
+% ------------------------------------------------------------------------------
+% Subsection: Example Subsection
+% ------------------------------------------------------------------------------
+\subsection{Example Subsection}
+\label{subsec:CHAPTER_LABEL_PLACEHOLDER_example}
+
+[Subsection content goes here.]
+
+% ------------------------------------------------------------------------------
+% Section: Second Section
+% ------------------------------------------------------------------------------
+\section{Second Section}
+\label{sec:CHAPTER_LABEL_PLACEHOLDER_second_section}
+
+[Content for the second section goes here.]
+
+% Example of a figure reference
+% \begin{figure}[htbp]
+% \centering
+% \includegraphics[width=0.8\textwidth]{Content/Images/your_image.png}
+% \caption{Caption for your figure}
+% \label{fig:CHAPTER_LABEL_PLACEHOLDER_example}
+% \end{figure}
+
+% Example of a table
+% \begin{table}[htbp]
+% \centering
+% \caption{Caption for your table}
+% \label{tab:CHAPTER_LABEL_PLACEHOLDER_example}
+% \begin{tabular}{lcc}
+% \toprule
+% \textbf{Column 1} & \textbf{Column 2} & \textbf{Column 3} \\
+% \midrule
+% Data 1 & Value 1 & Result 1 \\
+% Data 2 & Value 2 & Result 2 \\
+% \bottomrule
+% \end{tabular}
+% \end{table}
+
+% ------------------------------------------------------------------------------
+% Section: Summary
+% ------------------------------------------------------------------------------
+\section{Summary}
+\label{sec:CHAPTER_LABEL_PLACEHOLDER_summary}
+
+[Chapter summary goes here. Summarize the key points covered in this chapter.]
+
+% ==============================================================================
+% End of Chapter
+% ==============================================================================
+EOF
+
+# Replace placeholders
+sed -i "s/CHAPTER_TITLE_PLACEHOLDER/$CHAPTER_TITLE/g" "$CHAPTER_FILE"
+sed -i "s/CHAPTER_LABEL_PLACEHOLDER/$CHAPTER_NAME/g" "$CHAPTER_FILE"
+sed -i "s/CURRENT_DATE/$(date +%Y-%m-%d)/g" "$CHAPTER_FILE"
+
+print_success "Chapter file created: $CHAPTER_FILE"
+
+# ------------------------------------------------------------------------------
+# Update Content Loader
+# ------------------------------------------------------------------------------
+
+print_info "Updating content loader: 01_content.tex"
+
+# Check if the chapter is already included
+if grep -q "$CHAPTER_INPUT_LINE" "$CONTENT_FILE" 2>/dev/null; then
+ print_info "Chapter already included in content loader"
+else
+ # Add the chapter input line before the END marker
+ # Using a more robust method to handle the insertion
+
+ # Create a temporary file
+ TEMP_FILE=$(mktemp)
+
+ # Process the content file
+ awk -v input_line="$CHAPTER_INPUT_LINE" '
+ /^% --- CHAPTER LIST END ---/ {
+ print input_line
+ }
+ { print }
+ ' "$CONTENT_FILE" > "$TEMP_FILE"
+
+ # Move the temporary file back
+ mv "$TEMP_FILE" "$CONTENT_FILE"
+
+ print_success "Added chapter to content loader"
+fi
+
+# ------------------------------------------------------------------------------
+# Final Output
+# ------------------------------------------------------------------------------
+
+echo ""
+print_success "Chapter successfully created!"
+echo ""
+echo "Chapter file: $CHAPTER_FILE"
+echo "Chapter will be included in the document automatically."
+echo ""
+echo "Next steps:"
+echo "1. Edit the chapter file to add your content"
+echo "2. Build the document with 'make' or 'xelatex Main.tex'"
+echo ""
+echo "To reference this chapter in other parts of your document, use:"
+echo " \\ref{chap:${CHAPTER_NAME}}"
diff --git a/scripts/delete_chapter.sh b/scripts/delete_chapter.sh
new file mode 100755
index 0000000..429e154
--- /dev/null
+++ b/scripts/delete_chapter.sh
@@ -0,0 +1,212 @@
+#!/bin/bash
+
+# ==============================================================================
+# Delete Chapter Script
+# ==============================================================================
+# Description: Deletes a chapter file and removes it from the content loader
+# (01_content.tex)
+# Usage: ./scripts/delete_chapter.sh
+# Example: ./scripts/delete_chapter.sh 02_methodology
+# Author: HSRTReport Template
+# ==============================================================================
+
+set -e # Exit on error
+
+# ------------------------------------------------------------------------------
+# Configuration
+# ------------------------------------------------------------------------------
+SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
+CHAPTERS_DIR="$PROJECT_ROOT/Content/Chapters"
+CONTENT_FILE="$PROJECT_ROOT/Content/01_content.tex"
+BACKUP_DIR="$PROJECT_ROOT/.chapter_backups"
+
+# Colors for output
+RED='\033[0;31m'
+GREEN='\033[0;32m'
+YELLOW='\033[1;33m'
+BLUE='\033[0;34m'
+NC='\033[0m' # No Color
+
+# ------------------------------------------------------------------------------
+# Functions
+# ------------------------------------------------------------------------------
+
+print_usage() {
+ echo "Usage: $0 "
+ echo ""
+ echo "Deletes a chapter file and removes it from the content loader."
+ echo ""
+ echo "Arguments:"
+ echo " chapter_filename Name of the chapter file (with or without .tex extension)"
+ echo ""
+ echo "Examples:"
+ echo " $0 02_methodology"
+ echo " $0 02_methodology.tex"
+ echo ""
+ echo "Note: Deleted files are backed up to .chapter_backups/"
+}
+
+print_error() {
+ echo -e "${RED}Error: $1${NC}" >&2
+}
+
+print_success() {
+ echo -e "${GREEN}✓ $1${NC}"
+}
+
+print_info() {
+ echo -e "${YELLOW}ℹ $1${NC}"
+}
+
+print_warning() {
+ echo -e "${YELLOW}⚠ $1${NC}"
+}
+
+get_chapter_title() {
+ local file="$1"
+ # Extract chapter title from \chapter{...} command
+ if [ -f "$file" ]; then
+ grep -m 1 "\\\\chapter{" "$file" 2>/dev/null | sed 's/.*\\chapter{\([^}]*\)}.*/\1/' || echo "Untitled"
+ else
+ echo "Unknown"
+ fi
+}
+
+# ------------------------------------------------------------------------------
+# Input Validation
+# ------------------------------------------------------------------------------
+
+# Check if argument provided
+if [ $# -ne 1 ]; then
+ print_error "Invalid number of arguments"
+ print_usage
+ exit 1
+fi
+
+CHAPTER_NAME="$1"
+
+# Remove .tex extension if provided
+CHAPTER_NAME="${CHAPTER_NAME%.tex}"
+
+# Full path to chapter file
+CHAPTER_FILE="$CHAPTERS_DIR/${CHAPTER_NAME}.tex"
+
+# Check if file exists
+if [ ! -f "$CHAPTER_FILE" ]; then
+ print_error "Chapter file not found: $CHAPTER_FILE"
+ echo ""
+ echo "Available chapters:"
+ for file in "$CHAPTERS_DIR"/*.tex; do
+ if [ -f "$file" ]; then
+ basename "$file"
+ fi
+ done
+ exit 1
+fi
+
+# Get chapter information before deletion
+CHAPTER_TITLE=$(get_chapter_title "$CHAPTER_FILE")
+
+# ------------------------------------------------------------------------------
+# Confirmation
+# ------------------------------------------------------------------------------
+
+echo -e "${BLUE}==============================================================================
+Chapter Deletion
+==============================================================================${NC}"
+echo ""
+echo "You are about to delete:"
+echo " File: $(basename "$CHAPTER_FILE")"
+echo " Title: $CHAPTER_TITLE"
+echo " Full path: $CHAPTER_FILE"
+echo ""
+print_warning "This action will:"
+echo " 1. Back up the file to .chapter_backups/"
+echo " 2. Delete the chapter file"
+echo " 3. Remove it from 01_content.tex (if included)"
+echo ""
+echo -n "Are you sure you want to continue? (y/N): "
+read -r response
+
+if [[ ! "$response" =~ ^[Yy]$ ]]; then
+ echo "Deletion cancelled."
+ exit 0
+fi
+
+# ------------------------------------------------------------------------------
+# Create Backup
+# ------------------------------------------------------------------------------
+
+print_info "Creating backup..."
+
+# Create backup directory if it doesn't exist
+mkdir -p "$BACKUP_DIR"
+
+# Generate backup filename with timestamp
+TIMESTAMP=$(date +"%Y%m%d_%H%M%S")
+BACKUP_FILE="$BACKUP_DIR/${CHAPTER_NAME}_${TIMESTAMP}.tex"
+
+# Copy file to backup
+cp "$CHAPTER_FILE" "$BACKUP_FILE"
+print_success "Backup created: $BACKUP_FILE"
+
+# ------------------------------------------------------------------------------
+# Remove from Content Loader
+# ------------------------------------------------------------------------------
+
+print_info "Removing from content loader..."
+
+# Create the input line pattern to search for
+CHAPTER_INPUT_LINE="\\\\input{Content/Chapters/${CHAPTER_NAME}}"
+
+# Check if the chapter is included in content file
+if grep -q "$CHAPTER_INPUT_LINE" "$CONTENT_FILE" 2>/dev/null; then
+ # Create a temporary file
+ TEMP_FILE=$(mktemp)
+
+ # Remove the line containing the chapter input
+ grep -v "$CHAPTER_INPUT_LINE" "$CONTENT_FILE" > "$TEMP_FILE"
+
+ # Move the temporary file back
+ mv "$TEMP_FILE" "$CONTENT_FILE"
+
+ print_success "Removed from content loader"
+else
+ print_info "Chapter was not included in content loader"
+fi
+
+# ------------------------------------------------------------------------------
+# Delete Chapter File
+# ------------------------------------------------------------------------------
+
+print_info "Deleting chapter file..."
+
+rm "$CHAPTER_FILE"
+print_success "Chapter file deleted"
+
+# ------------------------------------------------------------------------------
+# Final Summary
+# ------------------------------------------------------------------------------
+
+echo ""
+echo -e "${GREEN}==============================================================================
+Chapter Successfully Deleted
+==============================================================================${NC}"
+echo ""
+echo "Summary:"
+echo " ✓ Chapter file deleted: $(basename "$CHAPTER_FILE")"
+echo " ✓ Backup saved to: $(basename "$BACKUP_FILE")"
+if grep -q "$CHAPTER_INPUT_LINE" "$CONTENT_FILE" 2>/dev/null; then
+ echo " ✓ Removed from document"
+fi
+echo ""
+echo "Recovery options:"
+echo " To restore this chapter, copy the backup file back:"
+echo " cp \"$BACKUP_FILE\" \"$CHAPTER_FILE\""
+echo ""
+echo " To re-include in document after restoration:"
+echo " Add the following line to Content/01_content.tex:"
+echo " $CHAPTER_INPUT_LINE"
+echo ""
+echo "All backups are stored in: .chapter_backups/"
diff --git a/scripts/list_chapters.sh b/scripts/list_chapters.sh
new file mode 100755
index 0000000..28daf3e
--- /dev/null
+++ b/scripts/list_chapters.sh
@@ -0,0 +1,211 @@
+#!/bin/bash
+
+# ==============================================================================
+# List Chapters Script
+# ==============================================================================
+# Description: Lists all chapter files in the project and shows their inclusion
+# status in the content loader
+# Usage: ./scripts/list_chapters.sh
+# Author: HSRTReport Template
+# ==============================================================================
+
+set -e # Exit on error
+
+# ------------------------------------------------------------------------------
+# Configuration
+# ------------------------------------------------------------------------------
+SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
+CHAPTERS_DIR="$PROJECT_ROOT/Content/Chapters"
+CONTENT_FILE="$PROJECT_ROOT/Content/01_content.tex"
+
+# Colors for output
+RED='\033[0;31m'
+GREEN='\033[0;32m'
+YELLOW='\033[1;33m'
+BLUE='\033[0;34m'
+CYAN='\033[0;36m'
+NC='\033[0m' # No Color
+
+# ------------------------------------------------------------------------------
+# Functions
+# ------------------------------------------------------------------------------
+
+print_header() {
+ echo -e "${BLUE}==============================================================================
+Chapter Management - File List
+==============================================================================${NC}"
+}
+
+print_success() {
+ echo -e "${GREEN}✓${NC} $1"
+}
+
+print_warning() {
+ echo -e "${YELLOW}○${NC} $1"
+}
+
+print_error() {
+ echo -e "${RED}✗${NC} $1"
+}
+
+get_chapter_title() {
+ local file="$1"
+ # Extract chapter title from \chapter{...} command
+ if [ -f "$file" ]; then
+ grep -m 1 "\\\\chapter{" "$file" 2>/dev/null | sed 's/.*\\chapter{\([^}]*\)}.*/\1/' || echo "Untitled"
+ else
+ echo "File not found"
+ fi
+}
+
+is_included() {
+ local chapter_name="$1"
+ # Check if chapter is included in content file
+ if grep -q "\\\\input{Content/Chapters/$chapter_name}" "$CONTENT_FILE" 2>/dev/null; then
+ return 0
+ else
+ return 1
+ fi
+}
+
+# ------------------------------------------------------------------------------
+# Main Script
+# ------------------------------------------------------------------------------
+
+print_header
+echo ""
+
+# Check if chapters directory exists
+if [ ! -d "$CHAPTERS_DIR" ]; then
+ print_error "Chapters directory not found: $CHAPTERS_DIR"
+ exit 1
+fi
+
+# Get all .tex files in chapters directory
+CHAPTER_FILES=()
+while IFS= read -r -d '' file; do
+ CHAPTER_FILES+=("$file")
+done < <(find "$CHAPTERS_DIR" -maxdepth 1 -name "*.tex" -type f -print0 | sort -z)
+
+if [ ${#CHAPTER_FILES[@]} -eq 0 ]; then
+ echo "No chapter files found in $CHAPTERS_DIR"
+ echo ""
+ echo "To create a new chapter, use:"
+ echo " ./scripts/create_chapter.sh "
+ echo ""
+ echo "Example:"
+ echo " ./scripts/create_chapter.sh 01 introduction"
+ exit 0
+fi
+
+# ------------------------------------------------------------------------------
+# Display Chapter List
+# ------------------------------------------------------------------------------
+
+echo -e "${CYAN}Found ${#CHAPTER_FILES[@]} chapter file(s):${NC}"
+echo ""
+
+# Table header
+printf "%-6s %-30s %-40s %-10s\n" "No." "File Name" "Chapter Title" "Status"
+printf "%-6s %-30s %-40s %-10s\n" "---" "$(printf '%30s' | tr ' ' '-')" "$(printf '%40s' | tr ' ' '-')" "----------"
+
+# List each chapter
+for i in "${!CHAPTER_FILES[@]}"; do
+ FILE="${CHAPTER_FILES[$i]}"
+ BASENAME=$(basename "$FILE")
+ FILENAME="${BASENAME%.*}"
+ TITLE=$(get_chapter_title "$FILE")
+
+ # Truncate long titles
+ if [ ${#TITLE} -gt 38 ]; then
+ TITLE="${TITLE:0:35}..."
+ fi
+
+ # Check if included
+ if is_included "$FILENAME"; then
+ STATUS="${GREEN}Included${NC}"
+ else
+ STATUS="${YELLOW}Not included${NC}"
+ fi
+
+ printf "%-6s %-30s %-40s " "$((i+1))." "$BASENAME" "$TITLE"
+ echo -e "$STATUS"
+done
+
+echo ""
+
+# ------------------------------------------------------------------------------
+# Statistics
+# ------------------------------------------------------------------------------
+
+echo -e "${BLUE}------------------------------------------------------------------------------${NC}"
+echo "Statistics:"
+
+# Count included chapters
+INCLUDED_COUNT=0
+NOT_INCLUDED_COUNT=0
+
+for FILE in "${CHAPTER_FILES[@]}"; do
+ BASENAME=$(basename "$FILE")
+ FILENAME="${BASENAME%.*}"
+ if is_included "$FILENAME"; then
+ ((INCLUDED_COUNT++)) || true
+ else
+ ((NOT_INCLUDED_COUNT++)) || true
+ fi
+done
+
+echo " Total chapters: ${#CHAPTER_FILES[@]}"
+echo -e " Included in document: ${GREEN}$INCLUDED_COUNT${NC}"
+echo -e " Not included: ${YELLOW}$NOT_INCLUDED_COUNT${NC}"
+
+# ------------------------------------------------------------------------------
+# Chapter Order in Document
+# ------------------------------------------------------------------------------
+
+echo ""
+echo -e "${BLUE}------------------------------------------------------------------------------${NC}"
+echo "Chapter order in document (01_content.tex):"
+echo ""
+
+# Extract included chapters from content file
+if [ -f "$CONTENT_FILE" ]; then
+ INCLUDED_CHAPTERS=()
+ while IFS= read -r line; do
+ if [[ "$line" =~ \\input\{Content/Chapters/([^}]+)\} ]]; then
+ INCLUDED_CHAPTERS+=("${BASH_REMATCH[1]}.tex")
+ fi
+ done < <(sed -n '/% --- CHAPTER LIST START ---/,/% --- CHAPTER LIST END ---/p' "$CONTENT_FILE")
+
+ if [ ${#INCLUDED_CHAPTERS[@]} -gt 0 ]; then
+ for i in "${!INCLUDED_CHAPTERS[@]}"; do
+ CHAPTER="${INCLUDED_CHAPTERS[$i]}"
+ TITLE=$(get_chapter_title "$CHAPTERS_DIR/$CHAPTER")
+ printf " %2d. %-30s %s\n" "$((i+1))" "$CHAPTER" "($TITLE)"
+ done
+ else
+ echo " (No chapters currently included)"
+ fi
+else
+ print_error "Content file not found: $CONTENT_FILE"
+fi
+
+# ------------------------------------------------------------------------------
+# Help Information
+# ------------------------------------------------------------------------------
+
+echo ""
+echo -e "${BLUE}------------------------------------------------------------------------------${NC}"
+echo "Available commands:"
+echo ""
+echo " Create chapter: ./scripts/create_chapter.sh "
+echo " List chapters: ./scripts/list_chapters.sh"
+echo " Delete chapter: ./scripts/delete_chapter.sh "
+echo " Show chapter: ./scripts/show_chapter.sh "
+echo ""
+echo "To manually include/exclude chapters, edit: Content/01_content.tex"
+echo ""
+
+# Exit successfully
+exit 0
diff --git a/scripts/show_chapter.sh b/scripts/show_chapter.sh
new file mode 100755
index 0000000..aab0ddb
--- /dev/null
+++ b/scripts/show_chapter.sh
@@ -0,0 +1,300 @@
+#!/bin/bash
+
+# ==============================================================================
+# Show Chapter Script
+# ==============================================================================
+# Description: Displays information and content of a specific chapter file
+# Usage: ./scripts/show_chapter.sh
+# Example: ./scripts/show_chapter.sh 02_methodology
+# Author: HSRTReport Template
+# ==============================================================================
+
+set -e # Exit on error
+
+# ------------------------------------------------------------------------------
+# Configuration
+# ------------------------------------------------------------------------------
+SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
+CHAPTERS_DIR="$PROJECT_ROOT/Content/Chapters"
+CONTENT_FILE="$PROJECT_ROOT/Content/01_content.tex"
+
+# Colors for output
+RED='\033[0;31m'
+GREEN='\033[0;32m'
+YELLOW='\033[1;33m'
+BLUE='\033[0;34m'
+CYAN='\033[0;36m'
+MAGENTA='\033[0;35m'
+NC='\033[0m' # No Color
+
+# ------------------------------------------------------------------------------
+# Functions
+# ------------------------------------------------------------------------------
+
+print_usage() {
+ echo "Usage: $0 [options]"
+ echo ""
+ echo "Displays information and content of a specific chapter file."
+ echo ""
+ echo "Arguments:"
+ echo " chapter_filename Name of the chapter file (with or without .tex extension)"
+ echo ""
+ echo "Options:"
+ echo " -h, --head N Show only first N lines of content (default: all)"
+ echo " -i, --info Show only file information, no content"
+ echo " -s, --structure Show only document structure (chapters, sections)"
+ echo ""
+ echo "Examples:"
+ echo " $0 02_methodology"
+ echo " $0 02_methodology.tex --head 50"
+ echo " $0 01_introduction --info"
+ echo " $0 03_results --structure"
+}
+
+print_error() {
+ echo -e "${RED}Error: $1${NC}" >&2
+}
+
+print_success() {
+ echo -e "${GREEN}✓ $1${NC}"
+}
+
+print_info() {
+ echo -e "${YELLOW}ℹ $1${NC}"
+}
+
+print_header() {
+ echo -e "${BLUE}$1${NC}"
+}
+
+get_chapter_title() {
+ local file="$1"
+ if [ -f "$file" ]; then
+ grep -m 1 "\\\\chapter{" "$file" 2>/dev/null | sed 's/.*\\chapter{\([^}]*\)}.*/\1/' || echo "Untitled"
+ else
+ echo "Unknown"
+ fi
+}
+
+get_chapter_label() {
+ local file="$1"
+ if [ -f "$file" ]; then
+ grep -m 1 "\\\\label{chap:" "$file" 2>/dev/null | sed 's/.*\\label{chap:\([^}]*\)}.*/\1/' || echo "no-label"
+ else
+ echo "unknown"
+ fi
+}
+
+is_included() {
+ local chapter_name="$1"
+ if grep -q "\\\\input{Content/Chapters/$chapter_name}" "$CONTENT_FILE" 2>/dev/null; then
+ return 0
+ else
+ return 1
+ fi
+}
+
+count_lines() {
+ local file="$1"
+ wc -l < "$file"
+}
+
+count_words() {
+ local file="$1"
+ # Count words excluding LaTeX commands (approximate)
+ sed 's/\\[a-zA-Z]*\({[^}]*}\)\?//g' "$file" | wc -w
+}
+
+get_file_size() {
+ local file="$1"
+ local size=$(stat -c%s "$file" 2>/dev/null || stat -f%z "$file" 2>/dev/null)
+
+ if [ "$size" -lt 1024 ]; then
+ echo "${size} bytes"
+ elif [ "$size" -lt 1048576 ]; then
+ echo "$((size / 1024)) KB"
+ else
+ echo "$((size / 1048576)) MB"
+ fi
+}
+
+get_modification_date() {
+ local file="$1"
+ stat -c%y "$file" 2>/dev/null | cut -d' ' -f1 || stat -f "%Sm" -t "%Y-%m-%d" "$file" 2>/dev/null || echo "Unknown"
+}
+
+show_structure() {
+ local file="$1"
+ echo -e "${CYAN}Document Structure:${NC}"
+ echo ""
+
+ # Extract chapters, sections, subsections
+ grep -n "\\\\chapter\|\\\\section\|\\\\subsection" "$file" | while IFS=: read -r line_num content; do
+ if [[ "$content" =~ \\chapter ]]; then
+ title=$(echo "$content" | sed 's/.*\\chapter{\([^}]*\)}.*/\1/')
+ echo -e "${MAGENTA}[$line_num] CHAPTER: $title${NC}"
+ elif [[ "$content" =~ \\section ]]; then
+ title=$(echo "$content" | sed 's/.*\\section{\([^}]*\)}.*/\1/')
+ echo -e "${BLUE} [$line_num] Section: $title${NC}"
+ elif [[ "$content" =~ \\subsection ]]; then
+ title=$(echo "$content" | sed 's/.*\\subsection{\([^}]*\)}.*/\1/')
+ echo -e "${CYAN} [$line_num] Subsection: $title${NC}"
+ fi
+ done
+}
+
+# ------------------------------------------------------------------------------
+# Parse Arguments
+# ------------------------------------------------------------------------------
+
+if [ $# -eq 0 ]; then
+ print_error "No arguments provided"
+ print_usage
+ exit 1
+fi
+
+CHAPTER_NAME="$1"
+shift
+
+# Default options
+SHOW_HEAD=0
+INFO_ONLY=false
+STRUCTURE_ONLY=false
+
+# Parse options
+while [[ $# -gt 0 ]]; do
+ case $1 in
+ -h|--head)
+ SHOW_HEAD="$2"
+ shift 2
+ ;;
+ -i|--info)
+ INFO_ONLY=true
+ shift
+ ;;
+ -s|--structure)
+ STRUCTURE_ONLY=true
+ shift
+ ;;
+ --help)
+ print_usage
+ exit 0
+ ;;
+ *)
+ print_error "Unknown option: $1"
+ print_usage
+ exit 1
+ ;;
+ esac
+done
+
+# ------------------------------------------------------------------------------
+# Validate Input
+# ------------------------------------------------------------------------------
+
+# Remove .tex extension if provided
+CHAPTER_NAME="${CHAPTER_NAME%.tex}"
+
+# Full path to chapter file
+CHAPTER_FILE="$CHAPTERS_DIR/${CHAPTER_NAME}.tex"
+
+# Check if file exists
+if [ ! -f "$CHAPTER_FILE" ]; then
+ print_error "Chapter file not found: $CHAPTER_FILE"
+ echo ""
+ echo "Available chapters:"
+ for file in "$CHAPTERS_DIR"/*.tex; do
+ if [ -f "$file" ]; then
+ echo " - $(basename "$file" .tex)"
+ fi
+ done
+ exit 1
+fi
+
+# ------------------------------------------------------------------------------
+# Display Chapter Information
+# ------------------------------------------------------------------------------
+
+echo -e "${BLUE}==============================================================================
+Chapter Information
+==============================================================================${NC}"
+echo ""
+
+# Basic information
+echo -e "${CYAN}File Information:${NC}"
+echo " File name: $(basename "$CHAPTER_FILE")"
+echo " Full path: $CHAPTER_FILE"
+echo " File size: $(get_file_size "$CHAPTER_FILE")"
+echo " Modified: $(get_modification_date "$CHAPTER_FILE")"
+echo " Line count: $(count_lines "$CHAPTER_FILE")"
+echo " Word count: ~$(count_words "$CHAPTER_FILE") words (approximate)"
+echo ""
+
+# Chapter metadata
+echo -e "${CYAN}Chapter Metadata:${NC}"
+echo " Title: $(get_chapter_title "$CHAPTER_FILE")"
+echo " Label: chap:$(get_chapter_label "$CHAPTER_FILE")"
+
+if is_included "$CHAPTER_NAME"; then
+ echo -e " Status: ${GREEN}Included in document${NC}"
+else
+ echo -e " Status: ${YELLOW}Not included in document${NC}"
+fi
+
+echo ""
+
+# ------------------------------------------------------------------------------
+# Show Structure if Requested
+# ------------------------------------------------------------------------------
+
+if [ "$STRUCTURE_ONLY" = true ]; then
+ show_structure "$CHAPTER_FILE"
+ exit 0
+fi
+
+# ------------------------------------------------------------------------------
+# Exit if Info Only
+# ------------------------------------------------------------------------------
+
+if [ "$INFO_ONLY" = true ]; then
+ exit 0
+fi
+
+# ------------------------------------------------------------------------------
+# Display Chapter Content
+# ------------------------------------------------------------------------------
+
+echo -e "${BLUE}------------------------------------------------------------------------------${NC}"
+echo -e "${CYAN}Chapter Content:${NC}"
+echo -e "${BLUE}------------------------------------------------------------------------------${NC}"
+echo ""
+
+if [ "$SHOW_HEAD" -gt 0 ]; then
+ head -n "$SHOW_HEAD" "$CHAPTER_FILE"
+ echo ""
+ echo -e "${YELLOW}... (showing first $SHOW_HEAD lines, $(count_lines "$CHAPTER_FILE") total lines)${NC}"
+else
+ cat "$CHAPTER_FILE"
+fi
+
+echo ""
+echo -e "${BLUE}------------------------------------------------------------------------------${NC}"
+echo -e "${CYAN}End of Chapter${NC}"
+echo -e "${BLUE}------------------------------------------------------------------------------${NC}"
+
+# ------------------------------------------------------------------------------
+# Show Related Commands
+# ------------------------------------------------------------------------------
+
+echo ""
+echo "Related commands:"
+echo " Edit this chapter: \$EDITOR \"$CHAPTER_FILE\""
+echo " Show structure only: $0 $CHAPTER_NAME --structure"
+echo " Show info only: $0 $CHAPTER_NAME --info"
+if ! is_included "$CHAPTER_NAME"; then
+ echo ""
+ echo "To include this chapter in the document, add the following line to"
+ echo "Content/01_content.tex in the marked chapter section:"
+ echo " \\input{Content/Chapters/$CHAPTER_NAME}"
+fi