85 lines
2.7 KiB
TeX
85 lines
2.7 KiB
TeX
\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}
|