[Skript] Hinzufügen der Skript-Dateien

This commit is contained in:
Andre Meyering 2017-08-01 14:43:57 +02:00
parent 32bed06b57
commit ca206af906
2 changed files with 85 additions and 0 deletions

Binary file not shown.

View file

@ -0,0 +1,85 @@
\input{../_latex/Praeamble.tex}
\newcommand{\Was}{Eigenes Skript}
\newcommand{\ArtikelWas}{das eigene Skript} % dies ist...
\newcommand{\Titel}{Technische Informatik\linebreak Digitaltechnik}
\newcommand{\TitelOneLine}{Technische Informatik - Digitaltechnik}
\newcommand{\Dozent}{Prof. Dr. Jürgen Röthig}
\newcommand{\AnspracheDozent}{Herrn \Dozent{}} % bei...
\newcommand{\Semester}{1.}
\newcommand{\Jahr}{2017}
\newcommand{\Zeitraum}{11.01.2017 - 22.03.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_Codierung.tex}
\input{Kapitel/03_SWS.tex}
\input{Kapitel/05_Signale.tex}
\input{Kapitel/06_Boolesche_Algebra.tex}
\input{Kapitel/07_Uebungsklausur.tex}
%------- Sonstiges ---------------------------------------------------
\chapter{Abkürzungsverzeichnis}
\begin{acronym}[xxxxxx]
\acro{AMI}{Alternate Mark Inversion}
\acro{BBB}{Bandbreitenbedarf}
\acro{BCD}{Binary Coded Decimals}
\acro{D-FF}{Data Flip Flop}
\acro{DMF}{Disjunktive Minimalform}
\acro{DNF}{Disjunktive Normalform}
\acro{GKZ}{Gleitkommazahl}
\acro{GSF}{Gleichstromfreiheit}
\acro{IC}{Integrated Circuit}
\acro{JK-FF}{Jump-Kill-Flip-Flop}
\acro{KPI}{Kernprimimplikant}
\acrodefplural{KPI}[KPIs]{Kernprimimplikanten}
\acro{KV}{Karnaugh-Veitch}
\acro{KMF}{Konjunktive Minimalform}
\acro{KNF}{Konjunktive Normalform}
\acro{NaN}{Not a Number}
\acro{NRZ}{Non-Return-to-Zero}
\acro{PI}{Primimplikant}
\acrodefplural{PI}[PIs]{Primimplikanten}
\acro{RS-FF}{Reset/Set Flip-Flop}
\acro{RZ}{Return-to-Zero}
\acro{SSH}{Störsicherheit}
\acro{SWS}{Stellenwertsysteme}
\acro{T-FF}{Toggle-Flip-Flop}
\acro{TFS}{Taktflankensteuerung}
\acro{TPS}{Taktpegelsteuerung}
\acro{TRG}{Taktrückgewinnung}
\acro{TTL}{Transistor-to-Transistor-Logic}
\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}