[Skript] Haupt-LaTeX Datei hinzugefügt
This commit is contained in:
parent
14104a2986
commit
acdcaebadc
1 changed files with 54 additions and 0 deletions
54
Rechnerarchitektur_Roethig_Skript_AM.tex
Normal file
54
Rechnerarchitektur_Roethig_Skript_AM.tex
Normal file
|
@ -0,0 +1,54 @@
|
|||
\input{../_latex/Praeamble.tex}
|
||||
|
||||
\newcommand{\Was}{Eigenes Skript}
|
||||
\newcommand{\ArtikelWas}{das eigene Skript} % dies ist...
|
||||
\newcommand{\Titel}{Technische Informatik 2 - Rechnerarchitektur}
|
||||
\newcommand{\TitelOneLine}{Rechnerarchitektur}
|
||||
\newcommand{\Dozent}{Prof. Dr. Jürgen Röthig}
|
||||
\newcommand{\AnspracheDozent}{Herrn \Dozent{}} % bei...
|
||||
\newcommand{\Semester}{1.}
|
||||
\newcommand{\Jahr}{2017}
|
||||
\newcommand{\Zeitraum}{09.10.2017}
|
||||
|
||||
% Setup für LaTeX
|
||||
\hypersetup{pdfauthor={\Autor}, pdftitle={\TitelOneLine}, pdfsubject={\Was}}
|
||||
\author{\Autor}
|
||||
\title{\Was}
|
||||
|
||||
\begin{document}
|
||||
\selectlanguage{ngerman}
|
||||
\newcounter{savepage} % Counter resetten
|
||||
\pagenumbering{Roman} % große, römische Seitenzahlen
|
||||
|
||||
\input{../_latex/Titelseite.tex}
|
||||
\setcounter{tocdepth}{1}
|
||||
\tableofcontents % Inhaltsverzeichnis ausgeben
|
||||
|
||||
%------- Inhalt -----------------------------------------------------
|
||||
\newpage
|
||||
|
||||
\setcounter{savepage}{\value{page}} % Neuer Counter
|
||||
\pagenumbering{arabic} % Normale Arabische Zahlen
|
||||
|
||||
|
||||
% Mitschriften
|
||||
\input{Kapitel/00_Vorwort.tex}
|
||||
\input{Kapitel/01_Einstieg.tex}
|
||||
\input{Kapitel/02_Rechner.tex}
|
||||
|
||||
%------- Sonstiges ---------------------------------------------------
|
||||
|
||||
\chapter{Abkürzungsverzeichnis}
|
||||
\begin{acronym}[xxxxxx]
|
||||
\acro{CPU}{central processing unit}
|
||||
\end{acronym}
|
||||
|
||||
\newpage
|
||||
\listoffigures % Abbildungsverzeichnis
|
||||
\newpage
|
||||
\listoftables % Tabellenverzeichnis
|
||||
\setcounter{tocdepth}{4} % Fix, siehe http://tex.stackexchange.com/questions/269061/how-to-prevent-settocdepthchapter-lead-to-an-empty-list-of-listings
|
||||
\lstlistoflistings % Liste der Listings
|
||||
\printindex % Stichwortverzeichnis
|
||||
|
||||
\end{document}
|
Loading…
Reference in a new issue