add header and footer
This commit is contained in:
parent
8fbf5ebe93
commit
7f843d6638
Binary file not shown.
@ -1,9 +1,10 @@
|
|||||||
\documentclass[a4paper]{article}
|
\documentclass[a4paper]{article}
|
||||||
\usepackage[ngerman]{babel}
|
\usepackage[ngerman]{babel}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
\usepackage{multicol}
|
\usepackage{multicol}
|
||||||
\usepackage{calc}
|
\usepackage{calc}
|
||||||
\usepackage{ifthen}
|
\usepackage{ifthen}
|
||||||
\usepackage[landscape,left=1cm,top=1cm,right=1cm,nohead,nofoot]{geometry}
|
\usepackage[landscape]{geometry}
|
||||||
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
||||||
\usepackage{color,graphicx,overpic}
|
\usepackage{color,graphicx,overpic}
|
||||||
\usepackage{listings}
|
\usepackage{listings}
|
||||||
@ -16,6 +17,14 @@
|
|||||||
\usetikzlibrary{mindmap, arrows,shapes,positioning,shadows,trees}
|
\usetikzlibrary{mindmap, arrows,shapes,positioning,shadows,trees}
|
||||||
\tikzstyle{every node}=[draw=black,thin,anchor=west, minimum height=2em]
|
\tikzstyle{every node}=[draw=black,thin,anchor=west, minimum height=2em]
|
||||||
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
\fancyhf{}
|
||||||
|
\fancyhead[L]{Betriebssysteme}
|
||||||
|
\fancyfoot[L]{\thepage/\pageref{LastPage}}
|
||||||
|
\renewcommand{\headrulewidth}{0pt} %obere Trennlinie
|
||||||
|
\renewcommand{\footrulewidth}{0pt} %untere Trennlinie
|
||||||
|
|
||||||
\pdfinfo{
|
\pdfinfo{
|
||||||
/Title (Betriebssysteme - Cheatsheet)
|
/Title (Betriebssysteme - Cheatsheet)
|
||||||
@ -24,16 +33,6 @@
|
|||||||
/Author (Robert Jeutter)
|
/Author (Robert Jeutter)
|
||||||
/Subject ()
|
/Subject ()
|
||||||
}
|
}
|
||||||
% Information boxes
|
|
||||||
\newcommand*{\info}[4][16.3]{
|
|
||||||
\node [ annotation, #3, scale=0.65, text width = #1em, inner sep = 2mm ] at (#2) {
|
|
||||||
\list{$\bullet$}{\topsep=0pt\itemsep=0pt\parsep=0pt
|
|
||||||
\parskip=0pt\labelwidth=8pt\leftmargin=8pt
|
|
||||||
\itemindent=0pt\labelsep=2pt}
|
|
||||||
#4
|
|
||||||
\endlist
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
% This sets page margins to .5 inch if using letter paper, and to 1cm
|
% This sets page margins to .5 inch if using letter paper, and to 1cm
|
||||||
% if using A4 paper. (This probably isn't strictly necessary.)
|
% if using A4 paper. (This probably isn't strictly necessary.)
|
||||||
@ -41,8 +40,8 @@
|
|||||||
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
||||||
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
||||||
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
}
|
}
|
||||||
|
|
||||||
% Redefine section commands to use less space
|
% Redefine section commands to use less space
|
||||||
@ -61,10 +60,6 @@
|
|||||||
{\normalfont\small\bfseries}}
|
{\normalfont\small\bfseries}}
|
||||||
\makeatother
|
\makeatother
|
||||||
|
|
||||||
% Define BibTeX command
|
|
||||||
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
|
|
||||||
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
|
|
||||||
|
|
||||||
% Don't print section numbers
|
% Don't print section numbers
|
||||||
\setcounter{secnumdepth}{0}
|
\setcounter{secnumdepth}{0}
|
||||||
|
|
||||||
@ -82,9 +77,6 @@
|
|||||||
\titlespacing{\subsection}{0pt}{*0}{*0}
|
\titlespacing{\subsection}{0pt}{*0}{*0}
|
||||||
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
||||||
|
|
||||||
%My Environments
|
|
||||||
\newtheorem{example}[section]{Example}
|
|
||||||
|
|
||||||
%Tikz global setting
|
%Tikz global setting
|
||||||
\tikzset{
|
\tikzset{
|
||||||
topic/.style={
|
topic/.style={
|
||||||
@ -119,8 +111,6 @@
|
|||||||
level 1/.append style={level distance=2.5cm},
|
level 1/.append style={level distance=2.5cm},
|
||||||
}
|
}
|
||||||
|
|
||||||
% Turn off header and footer
|
|
||||||
\pagestyle{empty}
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\raggedright
|
\raggedright
|
||||||
@ -341,7 +331,7 @@
|
|||||||
\paragraph{i-Node}
|
\paragraph{i-Node}
|
||||||
Metainformationen über genau eine Datei
|
Metainformationen über genau eine Datei
|
||||||
\centering{
|
\centering{
|
||||||
\includegraphics[width=\textwidth/4]{Assets/Betriebssysteme_i-Node.png}
|
\includegraphics[width=\textwidth/6]{Assets/Betriebssysteme_i-Node.png}
|
||||||
}
|
}
|
||||||
|
|
||||||
\paragraph{Verzeichnis}
|
\paragraph{Verzeichnis}
|
||||||
|
Binary file not shown.
@ -1,15 +1,26 @@
|
|||||||
\documentclass[landscape]{article}
|
\documentclass[landscape]{article}
|
||||||
\usepackage[ngerman]{babel}
|
\usepackage[ngerman]{babel}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
\usepackage{multicol}
|
\usepackage{multicol}
|
||||||
\usepackage{calc}
|
\usepackage{calc}
|
||||||
\usepackage{ifthen}
|
\usepackage{ifthen}
|
||||||
\usepackage[landscape,left=1cm,top=1cm,right=1cm,nohead,nofoot]{geometry}
|
\usepackage[landscape]{geometry}
|
||||||
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
||||||
\usepackage{color,graphicx,overpic}
|
\usepackage{color,graphicx,overpic}
|
||||||
\usepackage{hyperref}
|
|
||||||
\usepackage{listings}
|
\usepackage{listings}
|
||||||
\usepackage[compact]{titlesec} %less space for headers
|
\usepackage[compact]{titlesec} %less space for headers
|
||||||
\usepackage{mdwlist} %less space for lists
|
\usepackage{mdwlist} %less space for lists
|
||||||
|
\usepackage{pdflscape}
|
||||||
|
\usepackage{verbatim}
|
||||||
|
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
\fancyhf{}
|
||||||
|
\fancyhead[L]{Computergrafik}
|
||||||
|
\fancyfoot[L]{\thepage/\pageref{LastPage}}
|
||||||
|
\renewcommand{\headrulewidth}{0pt} %obere Trennlinie
|
||||||
|
\renewcommand{\footrulewidth}{0pt} %untere Trennlinie
|
||||||
|
|
||||||
\pdfinfo{
|
\pdfinfo{
|
||||||
/Title (Computergrafik - Cheatsheet)
|
/Title (Computergrafik - Cheatsheet)
|
||||||
@ -25,13 +36,10 @@
|
|||||||
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
||||||
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
||||||
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
}
|
}
|
||||||
|
|
||||||
% Turn off header and footer
|
|
||||||
\pagestyle{empty}
|
|
||||||
|
|
||||||
% Redefine section commands to use less space
|
% Redefine section commands to use less space
|
||||||
\makeatletter
|
\makeatletter
|
||||||
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
|
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
|
||||||
@ -48,10 +56,6 @@
|
|||||||
{\normalfont\small\bfseries}}
|
{\normalfont\small\bfseries}}
|
||||||
\makeatother
|
\makeatother
|
||||||
|
|
||||||
% Define BibTeX command
|
|
||||||
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
|
|
||||||
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
|
|
||||||
|
|
||||||
% Don't print section numbers
|
% Don't print section numbers
|
||||||
\setcounter{secnumdepth}{0}
|
\setcounter{secnumdepth}{0}
|
||||||
|
|
||||||
|
Binary file not shown.
@ -1,21 +1,26 @@
|
|||||||
\documentclass[a4paper, 8pt]{article}
|
\documentclass[a4paper]{article}
|
||||||
\usepackage[ngerman]{babel}
|
\usepackage[ngerman]{babel}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
\usepackage{multicol}
|
\usepackage{multicol}
|
||||||
\usepackage{calc}
|
\usepackage{calc}
|
||||||
\usepackage{ifthen}
|
\usepackage{ifthen}
|
||||||
\usepackage[left=1cm,top=1cm,right=1cm,nohead,nofoot]{geometry}
|
\usepackage{geometry}
|
||||||
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
||||||
\usepackage{color,graphicx,overpic}
|
\usepackage{color,graphicx,overpic}
|
||||||
\usepackage{listings}
|
\usepackage{listings}
|
||||||
\usepackage[compact]{titlesec} %less space for headers
|
\usepackage[compact]{titlesec} %less space for headers
|
||||||
\usepackage{mdwlist} %less space for lists
|
\usepackage{mdwlist} %less space for lists
|
||||||
\usepackage[utf8]{inputenc}
|
|
||||||
\usepackage{tikz}
|
|
||||||
\usepackage{pdflscape}
|
\usepackage{pdflscape}
|
||||||
\usepackage{verbatim}
|
\usepackage{verbatim}
|
||||||
\usetikzlibrary{mindmap, arrows,shapes,positioning,shadows,trees}
|
|
||||||
\tikzstyle{every node}=[draw=black,thin,anchor=west, minimum height=2em]
|
|
||||||
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
\fancyhf{}
|
||||||
|
\fancyhead[L]{Content Verwertungsmodelle}
|
||||||
|
\fancyfoot[L]{\thepage/\pageref{LastPage}}
|
||||||
|
\renewcommand{\headrulewidth}{0pt} %obere Trennlinie
|
||||||
|
\renewcommand{\footrulewidth}{0pt} %untere Trennlinie
|
||||||
|
|
||||||
\pdfinfo{
|
\pdfinfo{
|
||||||
/Title (Content Verwertungsmodelle - Cheatsheet)
|
/Title (Content Verwertungsmodelle - Cheatsheet)
|
||||||
@ -31,8 +36,8 @@
|
|||||||
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
||||||
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
||||||
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
}
|
}
|
||||||
|
|
||||||
% Redefine section commands to use less space
|
% Redefine section commands to use less space
|
||||||
@ -51,9 +56,6 @@
|
|||||||
{\normalfont\small\bfseries}}
|
{\normalfont\small\bfseries}}
|
||||||
\makeatother
|
\makeatother
|
||||||
|
|
||||||
% Define BibTeX command
|
|
||||||
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
|
|
||||||
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
|
|
||||||
% Don't print section numbers
|
% Don't print section numbers
|
||||||
\setcounter{secnumdepth}{0}
|
\setcounter{secnumdepth}{0}
|
||||||
\setlength{\parindent}{0pt}
|
\setlength{\parindent}{0pt}
|
||||||
@ -70,8 +72,6 @@
|
|||||||
\titlespacing{\subsection}{0pt}{*0}{*0}
|
\titlespacing{\subsection}{0pt}{*0}{*0}
|
||||||
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
||||||
|
|
||||||
% Turn off header and footer
|
|
||||||
\pagestyle{empty}
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\begin{multicols*}{2}
|
\begin{multicols*}{2}
|
||||||
|
Binary file not shown.
@ -1,22 +1,27 @@
|
|||||||
\documentclass[a4paper]{article}
|
\documentclass[a4paper]{article}
|
||||||
\usepackage[ngerman]{babel}
|
\usepackage[ngerman]{babel}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
\usepackage{multicol}
|
\usepackage{multicol}
|
||||||
\usepackage{calc}
|
\usepackage{calc}
|
||||||
\usepackage{ifthen}
|
\usepackage{ifthen}
|
||||||
\usepackage[landscape,left=1cm,top=1cm,right=1cm,nohead,nofoot]{geometry}
|
\usepackage[landscape]{geometry}
|
||||||
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
||||||
\usepackage{color,graphicx,overpic}
|
\usepackage{color,graphicx,overpic}
|
||||||
\usepackage{xcolor, listings}
|
\usepackage{xcolor, listings}
|
||||||
\usepackage{textcomp}
|
\usepackage{textcomp}
|
||||||
\usepackage[compact]{titlesec} %less space for headers
|
\usepackage[compact]{titlesec} %less space for headers
|
||||||
\usepackage{mdwlist} %less space for lists
|
\usepackage{mdwlist} %less space for lists
|
||||||
\usepackage[utf8]{inputenc}
|
|
||||||
\usepackage{tikz}
|
|
||||||
\usepackage{pdflscape}
|
\usepackage{pdflscape}
|
||||||
\usepackage{verbatim}
|
\usepackage{verbatim}
|
||||||
\usetikzlibrary{mindmap, arrows,shapes,positioning,shadows,trees, er}
|
|
||||||
\tikzstyle{every node}=[draw=black,thin,anchor=west, minimum height=2em]
|
|
||||||
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
\fancyhf{}
|
||||||
|
\fancyhead[L]{Datenbanksysteme}
|
||||||
|
\fancyfoot[L]{\thepage/\pageref{LastPage}}
|
||||||
|
\renewcommand{\headrulewidth}{0pt} %obere Trennlinie
|
||||||
|
\renewcommand{\footrulewidth}{0pt} %untere Trennlinie
|
||||||
|
|
||||||
\pdfinfo{
|
\pdfinfo{
|
||||||
/Title (Datenbanksysteme - Cheatsheet)
|
/Title (Datenbanksysteme - Cheatsheet)
|
||||||
@ -25,16 +30,6 @@
|
|||||||
/Author (Robert Jeutter)
|
/Author (Robert Jeutter)
|
||||||
/Subject ()
|
/Subject ()
|
||||||
}
|
}
|
||||||
% Information boxes
|
|
||||||
\newcommand*{\info}[4][16.3]{
|
|
||||||
\node [ annotation, #3, scale=0.65, text width = #1em, inner sep = 2mm ] at (#2) {
|
|
||||||
\list{$\bullet$}{\topsep=0pt\itemsep=0pt\parsep=0pt
|
|
||||||
\parskip=0pt\labelwidth=8pt\leftmargin=8pt
|
|
||||||
\itemindent=0pt\labelsep=2pt}
|
|
||||||
#4
|
|
||||||
\endlist
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
%%% Code Listings
|
%%% Code Listings
|
||||||
\definecolor{codegreen}{rgb}{0,0.6,0}
|
\definecolor{codegreen}{rgb}{0,0.6,0}
|
||||||
@ -58,8 +53,8 @@
|
|||||||
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
||||||
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
||||||
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
}
|
}
|
||||||
|
|
||||||
% Redefine section commands to use less space
|
% Redefine section commands to use less space
|
||||||
@ -99,11 +94,6 @@
|
|||||||
\titlespacing{\subsection}{0pt}{*0}{*0}
|
\titlespacing{\subsection}{0pt}{*0}{*0}
|
||||||
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
||||||
|
|
||||||
%My Environments
|
|
||||||
\newtheorem{example}[section]{Example}
|
|
||||||
|
|
||||||
% Turn off header and footer
|
|
||||||
\pagestyle{empty}
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\raggedright
|
\raggedright
|
||||||
@ -1014,7 +1004,7 @@ call weinliste ("Helena", wliste);
|
|||||||
\section{CLOSURE-Algorithmus / RAP-Regeln}
|
\section{CLOSURE-Algorithmus / RAP-Regeln}
|
||||||
\begin{tabular}{c|c|l}
|
\begin{tabular}{c|c|l}
|
||||||
R & Reflexivität & $\{\} \Rightarrow X\rightarrow X$ \\
|
R & Reflexivität & $\{\} \Rightarrow X\rightarrow X$ \\
|
||||||
A & Akkumulation & $\{X\rightarrow YZ, Z\rightarrow AW\}\Rightarrow X\rightarrow YZA$\\
|
A & Akkumulation & $\{X\rightarrow YZ, Z\rightarrow AW\}\Rightarrow X\rightarrow YZA$ \\
|
||||||
P & Projektivität & $\{X\rightarrow YZ\}\Rightarrow X\rightarrow Y$
|
P & Projektivität & $\{X\rightarrow YZ\}\Rightarrow X\rightarrow Y$
|
||||||
\end{tabular}
|
\end{tabular}
|
||||||
|
|
||||||
@ -1028,10 +1018,10 @@ call weinliste ("Helena", wliste);
|
|||||||
\end{description*}
|
\end{description*}
|
||||||
|
|
||||||
|
|
||||||
\section{Konsultation}
|
\section{Konsultation}
|
||||||
Mehrere theoretische Fragen? Nicht multiple choice wie in Moodle sondern zB Definitionen erklären (was ist Transaktion/Sicht?)
|
Mehrere theoretische Fragen? Nicht multiple choice wie in Moodle sondern zB Definitionen erklären (was ist Transaktion/Sicht?)
|
||||||
|
|
||||||
ERD->Relationenschema
|
ERD->Relationenschema
|
||||||
bei 1:N Beziehung kommt Schlüssel von N Seite
|
bei 1:N Beziehung kommt Schlüssel von N Seite
|
||||||
bei M:N Beziehung kommen Schlüssel von beiden Seiten
|
bei M:N Beziehung kommen Schlüssel von beiden Seiten
|
||||||
bei 1:1 Beziehung kann Schlüssel von entweder einer oder der anderen seite gewählt werden
|
bei 1:1 Beziehung kann Schlüssel von entweder einer oder der anderen seite gewählt werden
|
||||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -42,7 +42,7 @@ Unterlagen zu Informatik Vorlesungen der TU Ilmenau
|
|||||||
- [Stochastik Cheatsheet](Stochastik%20-%20Cheatsheet.pdf)
|
- [Stochastik Cheatsheet](Stochastik%20-%20Cheatsheet.pdf)
|
||||||
- [Systemsicherheit](Systemsicherheit.md) (work in progress)
|
- [Systemsicherheit](Systemsicherheit.md) (work in progress)
|
||||||
- [Telematik 1](Telematik%201.md)
|
- [Telematik 1](Telematik%201.md)
|
||||||
- [Telematik Cheatsheet](Telematik1-cheatsheet.pdf)
|
- [Telematik 1 Cheatsheet](Telematik%201-%20Cheatsheet.pdf)
|
||||||
|
|
||||||
der Modulplan 2013 für Bachelor Informatik: [Modulplan](Modultafel%20-%20Bachelor%20Informatik%202013.html) (am besten im Browser ansehen)
|
der Modulplan 2013 für Bachelor Informatik: [Modulplan](Modultafel%20-%20Bachelor%20Informatik%202013.html) (am besten im Browser ansehen)
|
||||||
|
|
||||||
|
Binary file not shown.
@ -1,15 +1,26 @@
|
|||||||
\documentclass[10pt,landscape]{article}
|
\documentclass[a4paper]{article}
|
||||||
\usepackage[ngerman]{babel}
|
\usepackage[ngerman]{babel}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
\usepackage{multicol}
|
\usepackage{multicol}
|
||||||
\usepackage{calc}
|
\usepackage{calc}
|
||||||
\usepackage{ifthen}
|
\usepackage{ifthen}
|
||||||
\usepackage[landscape]{geometry}
|
\usepackage[landscape]{geometry}
|
||||||
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
||||||
\usepackage{color,graphicx,overpic}
|
\usepackage{color,graphicx,overpic}
|
||||||
\usepackage{hyperref}
|
|
||||||
\usepackage{listings}
|
\usepackage{listings}
|
||||||
\usepackage[compact]{titlesec} %less space for headers
|
\usepackage[compact]{titlesec} %less space for headers
|
||||||
\usepackage{mdwlist} %less space for lists
|
\usepackage{mdwlist} %less space for lists
|
||||||
|
\usepackage{pdflscape}
|
||||||
|
\usepackage{verbatim}
|
||||||
|
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
\fancyhf{}
|
||||||
|
\fancyhead[L]{Rechnerarchitekturen 2}
|
||||||
|
\fancyfoot[L]{\thepage/\pageref{LastPage}}
|
||||||
|
\renewcommand{\headrulewidth}{0pt} %obere Trennlinie
|
||||||
|
\renewcommand{\footrulewidth}{0pt} %untere Trennlinie
|
||||||
|
|
||||||
\pdfinfo{
|
\pdfinfo{
|
||||||
/Title (Rechnerarchitekturen 2 - Cheatsheet)
|
/Title (Rechnerarchitekturen 2 - Cheatsheet)
|
||||||
@ -25,13 +36,10 @@
|
|||||||
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
||||||
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
||||||
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
}
|
}
|
||||||
|
|
||||||
% Turn off header and footer
|
|
||||||
\pagestyle{empty}
|
|
||||||
|
|
||||||
% Redefine section commands to use less space
|
% Redefine section commands to use less space
|
||||||
\makeatletter
|
\makeatletter
|
||||||
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
|
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
|
||||||
@ -48,10 +56,6 @@
|
|||||||
{\normalfont\small\bfseries}}
|
{\normalfont\small\bfseries}}
|
||||||
\makeatother
|
\makeatother
|
||||||
|
|
||||||
% Define BibTeX command
|
|
||||||
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
|
|
||||||
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
|
|
||||||
|
|
||||||
% Don't print section numbers
|
% Don't print section numbers
|
||||||
\setcounter{secnumdepth}{0}
|
\setcounter{secnumdepth}{0}
|
||||||
|
|
||||||
@ -753,11 +757,10 @@
|
|||||||
\item Mischung zwischen Write-Through und Copy-Back
|
\item Mischung zwischen Write-Through und Copy-Back
|
||||||
\end{itemize*}
|
\end{itemize*}
|
||||||
|
|
||||||
\vfill
|
|
||||||
\paragraph{MESI}
|
\paragraph{MESI}
|
||||||
\begin{center}
|
\begin{center}
|
||||||
\includegraphics[width=\textwidth/4]{Assets/RA2_MESI-Zustände.png}
|
\includegraphics[width=\textwidth/6]{Assets/RA2_MESI-Zustände.png}
|
||||||
\includegraphics[width=\textwidth/4]{Assets/RA2_MESI-Bedingungen.png}
|
\includegraphics[width=\textwidth/6]{Assets/RA2_MESI-Bedingungen.png}
|
||||||
\end{center}
|
\end{center}
|
||||||
%\begin{description*}
|
%\begin{description*}
|
||||||
% \item[Modified] Cache-Block wurde lokal geändert, die Kopie im Hauptspeicher ist ungültig. Will ein anderer Prozessor im Hauptspeicher lesen, so muss der Cache-Block erst in den Hauptspeicher zurückgeschrieben werden
|
% \item[Modified] Cache-Block wurde lokal geändert, die Kopie im Hauptspeicher ist ungültig. Will ein anderer Prozessor im Hauptspeicher lesen, so muss der Cache-Block erst in den Hauptspeicher zurückgeschrieben werden
|
||||||
|
Binary file not shown.
@ -3,7 +3,7 @@
|
|||||||
\usepackage{multicol}
|
\usepackage{multicol}
|
||||||
\usepackage{calc}
|
\usepackage{calc}
|
||||||
\usepackage{ifthen}
|
\usepackage{ifthen}
|
||||||
\usepackage[landscape,left=1cm,top=1cm,right=1cm,nohead,nofoot]{geometry}
|
\usepackage[landscape]{geometry}
|
||||||
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
||||||
\usepackage{color,graphicx,overpic}
|
\usepackage{color,graphicx,overpic}
|
||||||
\usepackage{listings}
|
\usepackage{listings}
|
||||||
@ -13,9 +13,15 @@
|
|||||||
\usepackage{tikz}
|
\usepackage{tikz}
|
||||||
\usepackage{pdflscape}
|
\usepackage{pdflscape}
|
||||||
\usepackage{verbatim}
|
\usepackage{verbatim}
|
||||||
\usetikzlibrary{mindmap, arrows,shapes,positioning,shadows,trees}
|
|
||||||
\tikzstyle{every node}=[draw=black,thin,anchor=west, minimum height=2em]
|
|
||||||
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
\fancyhf{}
|
||||||
|
\fancyhead[L]{Softwaretechnik}
|
||||||
|
\fancyfoot[L]{\thepage/\pageref{LastPage}}
|
||||||
|
\renewcommand{\headrulewidth}{0pt} %obere Trennlinie
|
||||||
|
\renewcommand{\footrulewidth}{0pt} %untere Trennlinie
|
||||||
|
|
||||||
\pdfinfo{
|
\pdfinfo{
|
||||||
/Title (Softwaretechnik - Cheatsheet)
|
/Title (Softwaretechnik - Cheatsheet)
|
||||||
@ -41,8 +47,8 @@
|
|||||||
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
||||||
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
||||||
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
}
|
}
|
||||||
|
|
||||||
% Redefine section commands to use less space
|
% Redefine section commands to use less space
|
||||||
@ -61,10 +67,6 @@
|
|||||||
{\normalfont\small\bfseries}}
|
{\normalfont\small\bfseries}}
|
||||||
\makeatother
|
\makeatother
|
||||||
|
|
||||||
% Define BibTeX command
|
|
||||||
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
|
|
||||||
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
|
|
||||||
|
|
||||||
% Don't print section numbers
|
% Don't print section numbers
|
||||||
\setcounter{secnumdepth}{0}
|
\setcounter{secnumdepth}{0}
|
||||||
|
|
||||||
@ -82,8 +84,6 @@
|
|||||||
\titlespacing{\subsection}{0pt}{*0}{*0}
|
\titlespacing{\subsection}{0pt}{*0}{*0}
|
||||||
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
||||||
|
|
||||||
% Turn off header and footer
|
|
||||||
\pagestyle{empty}
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\raggedright
|
\raggedright
|
||||||
|
Binary file not shown.
@ -1,15 +1,27 @@
|
|||||||
\documentclass[a4paper]{article}
|
\documentclass[a4paper]{article}
|
||||||
\usepackage[ngerman]{babel}
|
\usepackage[ngerman]{babel}
|
||||||
\usepackage[utf8]{inputenc}
|
|
||||||
\usepackage{multicol}
|
\usepackage{multicol}
|
||||||
\usepackage{calc}
|
\usepackage{calc}
|
||||||
\usepackage{ifthen}
|
\usepackage{ifthen}
|
||||||
\usepackage[landscape,left=1cm,top=1cm,right=1cm,nohead,nofoot]{geometry}
|
\usepackage[landscape]{geometry}
|
||||||
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
||||||
\usepackage{color,graphicx,overpic}
|
\usepackage{color,graphicx,overpic}
|
||||||
|
\usepackage{listings}
|
||||||
\usepackage[compact]{titlesec} %less space for headers
|
\usepackage[compact]{titlesec} %less space for headers
|
||||||
\usepackage{mdwlist} %less space for lists
|
\usepackage{mdwlist} %less space for lists
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage{tikz}
|
||||||
|
\usepackage{pdflscape}
|
||||||
|
\usepackage{verbatim}
|
||||||
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
\fancyhf{}
|
||||||
|
\fancyhead[L]{Stochastik}
|
||||||
|
\fancyfoot[L]{\thepage/\pageref{LastPage}}
|
||||||
|
\renewcommand{\headrulewidth}{0pt} %obere Trennlinie
|
||||||
|
\renewcommand{\footrulewidth}{0pt} %untere Trennlinie
|
||||||
|
|
||||||
\pdfinfo{
|
\pdfinfo{
|
||||||
/Title (Stochastik - Cheatsheet)
|
/Title (Stochastik - Cheatsheet)
|
||||||
@ -18,6 +30,16 @@
|
|||||||
/Author (Robert Jeutter)
|
/Author (Robert Jeutter)
|
||||||
/Subject ()
|
/Subject ()
|
||||||
}
|
}
|
||||||
|
% Information boxes
|
||||||
|
\newcommand*{\info}[4][16.3]{
|
||||||
|
\node [ annotation, #3, scale=0.65, text width = #1em, inner sep = 2mm ] at (#2) {
|
||||||
|
\list{$\bullet$}{\topsep=0pt\itemsep=0pt\parsep=0pt
|
||||||
|
\parskip=0pt\labelwidth=8pt\leftmargin=8pt
|
||||||
|
\itemindent=0pt\labelsep=2pt}
|
||||||
|
#4
|
||||||
|
\endlist
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
% This sets page margins to .5 inch if using letter paper, and to 1cm
|
% This sets page margins to .5 inch if using letter paper, and to 1cm
|
||||||
% if using A4 paper. (This probably isn't strictly necessary.)
|
% if using A4 paper. (This probably isn't strictly necessary.)
|
||||||
@ -25,8 +47,8 @@
|
|||||||
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
||||||
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
||||||
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
}
|
}
|
||||||
|
|
||||||
% Redefine section commands to use less space
|
% Redefine section commands to use less space
|
||||||
@ -62,9 +84,6 @@
|
|||||||
\titlespacing{\subsection}{0pt}{*0}{*0}
|
\titlespacing{\subsection}{0pt}{*0}{*0}
|
||||||
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
\titlespacing{\subsubsection}{0pt}{*0}{*0}
|
||||||
|
|
||||||
% Turn off header and footer
|
|
||||||
\pagestyle{empty}
|
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\raggedright
|
\raggedright
|
||||||
\begin{multicols}{3}\scriptsize
|
\begin{multicols}{3}\scriptsize
|
||||||
|
Binary file not shown.
@ -1,4 +1,4 @@
|
|||||||
\documentclass[10pt,landscape]{article}
|
\documentclass[a4paper]{article}
|
||||||
\usepackage[ngerman]{babel}
|
\usepackage[ngerman]{babel}
|
||||||
\usepackage{multicol}
|
\usepackage{multicol}
|
||||||
\usepackage{calc}
|
\usepackage{calc}
|
||||||
@ -6,18 +6,40 @@
|
|||||||
\usepackage[landscape]{geometry}
|
\usepackage[landscape]{geometry}
|
||||||
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
\usepackage{amsmath,amsthm,amsfonts,amssymb}
|
||||||
\usepackage{color,graphicx,overpic}
|
\usepackage{color,graphicx,overpic}
|
||||||
\usepackage{hyperref}
|
|
||||||
\usepackage{listings}
|
\usepackage{listings}
|
||||||
\usepackage[compact]{titlesec} %less space for headers
|
\usepackage[compact]{titlesec} %less space for headers
|
||||||
\usepackage{mdwlist} %less space for lists
|
\usepackage{mdwlist} %less space for lists
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage{tikz}
|
||||||
|
\usepackage{pdflscape}
|
||||||
|
\usepackage{verbatim}
|
||||||
|
\usepackage[hidelinks,pdfencoding=auto]{hyperref}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
\fancyhf{}
|
||||||
|
\fancyhead[L]{Telematik 1}
|
||||||
|
\fancyfoot[L]{\thepage/\pageref{LastPage}}
|
||||||
|
\renewcommand{\headrulewidth}{0pt} %obere Trennlinie
|
||||||
|
\renewcommand{\footrulewidth}{0pt} %untere Trennlinie
|
||||||
|
|
||||||
\pdfinfo{
|
\pdfinfo{
|
||||||
/Title (Telematik 1 - Cheatsheet)
|
/Title (Telematik 1 - Cheatsheet)
|
||||||
/Creator (TeX)
|
/Creator (TeX)
|
||||||
/Producer (pdfTeX 1.40.0)
|
/Producer (pdfTeX 1.40.0)
|
||||||
/Author (Robert Jeutter)
|
/Author (Robert Jeutter)
|
||||||
/Subject (Telematik 1)
|
/Subject ()
|
||||||
/Keywords (Telematik, ISO/OSI, TCP/IP)}
|
}
|
||||||
|
% Information boxes
|
||||||
|
\newcommand*{\info}[4][16.3]{
|
||||||
|
\node [ annotation, #3, scale=0.65, text width = #1em, inner sep = 2mm ] at (#2) {
|
||||||
|
\list{$\bullet$}{\topsep=0pt\itemsep=0pt\parsep=0pt
|
||||||
|
\parskip=0pt\labelwidth=8pt\leftmargin=8pt
|
||||||
|
\itemindent=0pt\labelsep=2pt}
|
||||||
|
#4
|
||||||
|
\endlist
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
% This sets page margins to .5 inch if using letter paper, and to 1cm
|
% This sets page margins to .5 inch if using letter paper, and to 1cm
|
||||||
% if using A4 paper. (This probably isn't strictly necessary.)
|
% if using A4 paper. (This probably isn't strictly necessary.)
|
||||||
@ -25,13 +47,10 @@
|
|||||||
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
\ifthenelse{\lengthtest { \paperwidth = 11in}}
|
||||||
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
{ \geometry{top=.5in,left=.5in,right=.5in,bottom=.5in} }
|
||||||
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
{\ifthenelse{ \lengthtest{ \paperwidth = 297mm}}
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
{\geometry{top=1cm,left=1cm,right=1cm,bottom=1cm} }
|
{\geometry{top=1.3cm,left=1cm,right=1cm,bottom=1.2cm} }
|
||||||
}
|
}
|
||||||
|
|
||||||
% Turn off header and footer
|
|
||||||
\pagestyle{empty}
|
|
||||||
|
|
||||||
% Redefine section commands to use less space
|
% Redefine section commands to use less space
|
||||||
\makeatletter
|
\makeatletter
|
||||||
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
|
\renewcommand{\section}{\@startsection{section}{1}{0mm}%
|
||||||
@ -48,10 +67,6 @@
|
|||||||
{\normalfont\small\bfseries}}
|
{\normalfont\small\bfseries}}
|
||||||
\makeatother
|
\makeatother
|
||||||
|
|
||||||
% Define BibTeX command
|
|
||||||
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
|
|
||||||
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
|
|
||||||
|
|
||||||
% Don't print section numbers
|
% Don't print section numbers
|
||||||
\setcounter{secnumdepth}{0}
|
\setcounter{secnumdepth}{0}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user