summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorPhilipp Le <philipp-le-prviat@freenet.de>2021-04-15 08:59:02 +0200
committerPhilipp Le <philipp-le-prviat@freenet.de>2021-04-15 08:59:02 +0200
commit5d8fbc8cd0071b0cb4a8fcb925ad86e5e23d1083 (patch)
tree22b3d8ee112db4b6b9d9c159026e71382a2c611e /main
parentb71085e089db0c420ee3976939593c6e68a9bca4 (diff)
downloaddcs-lecture-notes-5d8fbc8cd0071b0cb4a8fcb925ad86e5e23d1083.zip
dcs-lecture-notes-5d8fbc8cd0071b0cb4a8fcb925ad86e5e23d1083.tar.gz
dcs-lecture-notes-5d8fbc8cd0071b0cb4a8fcb925ad86e5e23d1083.tar.bz2
Adding stubs for Chapters 8 and 9
Diffstat (limited to 'main')
-rw-r--r--main/DCS.tex6
-rw-r--r--main/chapter08.tex115
-rw-r--r--main/chapter09.tex115
3 files changed, 236 insertions, 0 deletions
diff --git a/main/DCS.tex b/main/DCS.tex
index 72d1bfc..027f5bf 100644
--- a/main/DCS.tex
+++ b/main/DCS.tex
@@ -110,6 +110,12 @@
\input{../exercise07/exercise07.tex}
\clearpage
+\input{../chapter08/content_ch08.tex}
+\clearpage
+
+\input{../chapter09/content_ch09.tex}
+\clearpage
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Appendix
diff --git a/main/chapter08.tex b/main/chapter08.tex
new file mode 100644
index 0000000..70785a5
--- /dev/null
+++ b/main/chapter08.tex
@@ -0,0 +1,115 @@
+% SPDX-License-Identifier: CC-BY-SA-4.0
+%
+% Copyright (c) 2021 Philipp Le
+%
+% Except where otherwise noted, this work is licensed under a
+% Creative Commons Attribution-ShareAlike 4.0 License.
+%
+% Please find the full copy of the licence at:
+% https://creativecommons.org/licenses/by-sa/4.0/legalcode
+
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Configuration
+\def\thekindofdocument{Lecture Notes}
+\def\thesubtitle{Chapter 8: Information and Coding Theory}
+\def\therevision{2}
+\def\therevisiondate{2020-06-30}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Header
+\input{../common/settings.tex}
+
+\begin{document}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Title Page
+\pagenumbering{Alph}
+\pagestyle{empty}
+
+% Title Page
+\input{../common/titlepage.tex}
+\newpage
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Preface
+\pagenumbering{arabic}
+\pagestyle{headings}
+
+% Inhaltsverzeichnis
+%\tableofcontents
+%\newpage
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Content
+
+\setcounter{chapter}{7}
+
+\input{../chapter08/content_ch08.tex}
+\clearpage
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Appendix
+
+\begin{appendix}
+
+%\include{appendix/crlb}
+
+\end{appendix}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Nachtrag
+
+% References
+%\bibliographystyle{unsrt}
+%\bibliography{Masterarbeit}
+
+% List of Acronyms
+\input{../common/acronym.tex}
+\newpage
+
+% Notation
+%\include{formales/notation}
+%\newpage
+
+% List of Symbols
+%\include{formales/formelzeichen}
+\newpage
+
+% List of Block Diagram Symbols
+%\include{formales/blockfigures}
+\newpage
+
+% Print default index
+\phantomsection
+\addcontentsline{toc}{chapter}{Index}
+\printindex
+\newpage
+
+% List of Figures
+\phantomsection
+\addcontentsline{toc}{chapter}{\listfigurename}
+\listoffigures
+\newpage
+
+% List of Tables
+\phantomsection
+\addcontentsline{toc}{chapter}{\listtablename}
+\listoftables
+\newpage
+
+% Nomenclature
+\phantomsection
+\addcontentsline{toc}{chapter}{Nomenclature}
+\printnomenclature
+\newpage
+
+% Imprint
+\input{../common/imprint.tex}
+\newpage
+
+% To Do
+\pagenumbering{alph}
+%\listoftodos
+
+\end{document}
diff --git a/main/chapter09.tex b/main/chapter09.tex
new file mode 100644
index 0000000..808648a
--- /dev/null
+++ b/main/chapter09.tex
@@ -0,0 +1,115 @@
+% SPDX-License-Identifier: CC-BY-SA-4.0
+%
+% Copyright (c) 2021 Philipp Le
+%
+% Except where otherwise noted, this work is licensed under a
+% Creative Commons Attribution-ShareAlike 4.0 License.
+%
+% Please find the full copy of the licence at:
+% https://creativecommons.org/licenses/by-sa/4.0/legalcode
+
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Configuration
+\def\thekindofdocument{Lecture Notes}
+\def\thesubtitle{Chapter 9: Digital Communication Equipment}
+\def\therevision{2}
+\def\therevisiondate{2020-06-30}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Header
+\input{../common/settings.tex}
+
+\begin{document}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Title Page
+\pagenumbering{Alph}
+\pagestyle{empty}
+
+% Title Page
+\input{../common/titlepage.tex}
+\newpage
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Preface
+\pagenumbering{arabic}
+\pagestyle{headings}
+
+% Inhaltsverzeichnis
+%\tableofcontents
+%\newpage
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Content
+
+\setcounter{chapter}{8}
+
+\input{../chapter09/content_ch09.tex}
+\clearpage
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Appendix
+
+\begin{appendix}
+
+%\include{appendix/crlb}
+
+\end{appendix}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% Nachtrag
+
+% References
+%\bibliographystyle{unsrt}
+%\bibliography{Masterarbeit}
+
+% List of Acronyms
+\input{../common/acronym.tex}
+\newpage
+
+% Notation
+%\include{formales/notation}
+%\newpage
+
+% List of Symbols
+%\include{formales/formelzeichen}
+\newpage
+
+% List of Block Diagram Symbols
+%\include{formales/blockfigures}
+\newpage
+
+% Print default index
+\phantomsection
+\addcontentsline{toc}{chapter}{Index}
+\printindex
+\newpage
+
+% List of Figures
+\phantomsection
+\addcontentsline{toc}{chapter}{\listfigurename}
+\listoffigures
+\newpage
+
+% List of Tables
+\phantomsection
+\addcontentsline{toc}{chapter}{\listtablename}
+\listoftables
+\newpage
+
+% Nomenclature
+\phantomsection
+\addcontentsline{toc}{chapter}{Nomenclature}
+\printnomenclature
+\newpage
+
+% Imprint
+\input{../common/imprint.tex}
+\newpage
+
+% To Do
+\pagenumbering{alph}
+%\listoftodos
+
+\end{document}