\documentclass[10pt,a4paper]{article} % Packages \usepackage{fancyhdr} % For header and footer \usepackage{multicol} % Allows multicols in tables \usepackage{tabularx} % Intelligent column widths \usepackage{tabulary} % Used in header and footer \usepackage{hhline} % Border under tables \usepackage{graphicx} % For images \usepackage{xcolor} % For hex colours %\usepackage[utf8x]{inputenc} % For unicode character support \usepackage[T1]{fontenc} % Without this we get weird character replacements \usepackage{colortbl} % For coloured tables \usepackage{setspace} % For line height \usepackage{lastpage} % Needed for total page number \usepackage{seqsplit} % Splits long words. %\usepackage{opensans} % Can't make this work so far. Shame. Would be lovely. \usepackage[normalem]{ulem} % For underlining links % Most of the following are not required for the majority % of cheat sheets but are needed for some symbol support. \usepackage{amsmath} % Symbols \usepackage{MnSymbol} % Symbols \usepackage{wasysym} % Symbols %\usepackage[english,german,french,spanish,italian]{babel} % Languages % Document Info \author{TimSch} \pdfinfo{ /Title (praprozessorbefehle.pdf) /Creator (Cheatography) /Author (TimSch) /Subject (Pr{\"a}prozessorbefehle Cheat Sheet) } % Lengths and widths \addtolength{\textwidth}{6cm} \addtolength{\textheight}{-1cm} \addtolength{\hoffset}{-3cm} \addtolength{\voffset}{-2cm} \setlength{\tabcolsep}{0.2cm} % Space between columns \setlength{\headsep}{-12pt} % Reduce space between header and content \setlength{\headheight}{85pt} % If less, LaTeX automatically increases it \renewcommand{\footrulewidth}{0pt} % Remove footer line \renewcommand{\headrulewidth}{0pt} % Remove header line \renewcommand{\seqinsert}{\ifmmode\allowbreak\else\-\fi} % Hyphens in seqsplit % This two commands together give roughly % the right line height in the tables \renewcommand{\arraystretch}{1.3} \onehalfspacing % Commands \newcommand{\SetRowColor}[1]{\noalign{\gdef\RowColorName{#1}}\rowcolor{\RowColorName}} % Shortcut for row colour \newcommand{\mymulticolumn}[3]{\multicolumn{#1}{>{\columncolor{\RowColorName}}#2}{#3}} % For coloured multi-cols \newcolumntype{x}[1]{>{\raggedright}p{#1}} % New column types for ragged-right paragraph columns \newcommand{\tn}{\tabularnewline} % Required as custom column type in use % Font and Colours \definecolor{HeadBackground}{HTML}{333333} \definecolor{FootBackground}{HTML}{666666} \definecolor{TextColor}{HTML}{333333} \definecolor{DarkBackground}{HTML}{A3A3A3} \definecolor{LightBackground}{HTML}{F3F3F3} \renewcommand{\familydefault}{\sfdefault} \color{TextColor} % Header and Footer \pagestyle{fancy} \fancyhead{} % Set header to blank \fancyfoot{} % Set footer to blank \fancyhead[L]{ \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{C} \SetRowColor{DarkBackground} \vspace{-7pt} {\parbox{\dimexpr\textwidth-2\fboxsep\relax}{\noindent \hspace*{-6pt}\includegraphics[width=5.8cm]{/web/www.cheatography.com/public/images/cheatography_logo.pdf}} } \end{tabulary} \columnbreak \begin{tabulary}{11cm}{L} \vspace{-2pt}\large{\bf{\textcolor{DarkBackground}{\textrm{Pr{\"a}prozessorbefehle Cheat Sheet}}}} \\ \normalsize{by \textcolor{DarkBackground}{TimSch} via \textcolor{DarkBackground}{\uline{cheatography.com/29480/cs/15162/}}} \end{tabulary} \end{multicols}} \fancyfoot[L]{ \footnotesize \noindent \begin{multicols}{3} \begin{tabulary}{5.8cm}{LL} \SetRowColor{FootBackground} \mymulticolumn{2}{p{5.377cm}}{\bf\textcolor{white}{Cheatographer}} \\ \vspace{-2pt}TimSch \\ \uline{cheatography.com/timsch} \\ \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Cheat Sheet}} \\ \vspace{-2pt}Published 18th March, 2018.\\ Updated 18th March, 2018.\\ Page {\thepage} of \pageref{LastPage}. \end{tabulary} \vfill \columnbreak \begin{tabulary}{5.8cm}{L} \SetRowColor{FootBackground} \mymulticolumn{1}{p{5.377cm}}{\bf\textcolor{white}{Sponsor}} \\ \SetRowColor{white} \vspace{-5pt} %\includegraphics[width=48px,height=48px]{dave.jpeg} Measure your website readability!\\ www.readability-score.com \end{tabulary} \end{multicols}} \begin{document} \raggedright \raggedcolumns % Set font size to small. Switch to any value % from this page to resize cheat sheet text: % www.emerson.emory.edu/services/latex/latex_169.html \footnotesize % Small font. \begin{multicols*}{2} \begin{tabularx}{8.4cm}{x{2.08 cm} x{5.92 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Übersicht}} \tn % Row 0 \SetRowColor{LightBackground} \#include & Fügt Text aus einer anderen Quelltextdatei ein. \tn % Row Count 2 (+ 2) % Row 1 \SetRowColor{white} \#define & Definiert ein Makro \tn % Row Count 3 (+ 1) % Row 2 \SetRowColor{LightBackground} \#undef & Entfernt ein Makro \tn % Row Count 4 (+ 1) % Row 3 \SetRowColor{white} \#if & Bedingte Compilierung in Abh{\"a}ngigkeit der nachstehenden Bedingung \tn % Row Count 7 (+ 3) % Row 4 \SetRowColor{LightBackground} \#elif\textasciicircum{}2\textasciicircum{} & Alternative Compilierung in Abh{\"a}ngigkeit der nachstehenden Bedingung, wenn die Bedingung des vorstehenden `\#if`, `\#elif`, `\#ifdef` oder `\#ifndef` nicht erfüllt ist. (Also wie else if). \tn % Row Count 14 (+ 7) % Row 5 \SetRowColor{white} defined\textasciicircum{}1\textasciicircum{} & Liefert eine 1, wenn der nachstehende Makroname definiert ist, sonst eine 0. \{\{nl\}\} {\emph{Kann nur zusammen mit `\#if` oder `\#elif` verwendet werden.}} \tn % Row Count 19 (+ 5) % Row 6 \SetRowColor{LightBackground} \#ifdef & Bedingte Compilierung in Abh{\"a}ngigkeit, ob ein Makroname definiert ist. \tn % Row Count 22 (+ 3) % Row 7 \SetRowColor{white} \#ifndef & Bedingte Compilierung in Abh{\"a}ngigkeit, ob ein Makroname {\bf{nicht}} definiert ist. \tn % Row Count 25 (+ 3) % Row 8 \SetRowColor{LightBackground} \#else & Alternative Compilierung, wenn die Bedingung des vorstehenden `\#if`, `\#elif`, `\#ifdef` oder `\#ifndef` nicht erfüllt ist \tn % Row Count 30 (+ 5) \end{tabularx} \par\addvspace{1.3em} \vfill \columnbreak \begin{tabularx}{8.4cm}{x{2.08 cm} x{5.92 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Übersicht (cont)}} \tn % Row 9 \SetRowColor{LightBackground} \#endif & Beendet den Block mit der bedingten Compilierung \tn % Row Count 2 (+ 2) % Row 10 \SetRowColor{white} \#line & Liefert eine Zeilennummer für Compilermeldungen \tn % Row Count 4 (+ 2) % Row 11 \SetRowColor{LightBackground} \#operator\textasciicircum{}1\textasciicircum{} & Ersetzt innerhalb eines Makros einen Makroparameter durch eine konstante Zeichenkette, die den Wert des Parameters enth{\"a}lt. \tn % Row Count 9 (+ 5) % Row 12 \SetRowColor{white} \#\# operator\textasciicircum{}1\textasciicircum{} & Erzeugt ein einzelnes Token aus zwei hintereinander stehenden Tokens. \tn % Row Count 12 (+ 3) % Row 13 \SetRowColor{LightBackground} \#pragma\textasciicircum{}1\textasciicircum{} & Gibt Compiler- und Systemabh{\"a}ngige Informationen an den Compiler \tn % Row Count 15 (+ 3) % Row 14 \SetRowColor{white} \#error\textasciicircum{}1,3\textasciicircum{} & Erzeugt einen Fehler w{\"a}hrend der Compilierung mit der angegebenen Fehlermeldung. \tn % Row Count 18 (+ 3) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{8.4cm}}{\textasciicircum{}1\textasciicircum{} Neu in C99. \{\{nl\}\} \newline \textasciicircum{}2\textasciicircum{} Geh{\"o}rt nicht zum Standard-C, obwohl es von vielen Compilern unterstützt wird. \newline \textasciicircum{}3\textasciicircum{}\#pragma Befehle k{\"o}nnen nur entweder in der obersten Ebene {\bf{vor der ersten Deklaration}} oder innerhalb eines Blockes {\bf{vor der ersten Deklaration}} eingesetzt werden!} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{8.4cm}{x{2.32 cm} x{5.68 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Vordefinierte Makros}} \tn % Row 0 \SetRowColor{LightBackground} \_\_LINE\_\_ & Zeilennummer innerhalb der aktuellen Quellcodedatei \tn % Row Count 2 (+ 2) % Row 1 \SetRowColor{white} \_\_FILE\_\_ & Name der aktuellen Quellcodedatei \tn % Row Count 4 (+ 2) % Row 2 \SetRowColor{LightBackground} \_\_DATE\_\_ & Datum, wann das Programm kompiliert wurde (als Zeichenkette) \tn % Row Count 7 (+ 3) % Row 3 \SetRowColor{white} \_\_TIME\_\_ & Uhrzeit, wann das Programm kompiliert wurde (als Zeichenkette) \tn % Row Count 10 (+ 3) % Row 4 \SetRowColor{LightBackground} \_\_STDC\_\_ & Liefert eine 1, wenn sich der Compiler nach Standard-C richtet \tn % Row Count 13 (+ 3) % Row 5 \SetRowColor{white} \seqsplit{\_\_STDC\_VERSION\_\_} & Liefert die Zahl \{\{nl\}\} ~ 199409L, wenn sich der Compiler nach C95 richtet \{\{nl\}\} ~ 1999901L, wenn sich der Compiler nach C99 richtet \{\{nl\}\} sonst ist dieses Makro nicht definiert \tn % Row Count 20 (+ 7) % Row 6 \SetRowColor{LightBackground} \mymulticolumn{2}{x{8.4cm}}{\{\{ac\}\}{\bf{Betriebssystemabh{\"a}ngige vordefinierte Makros}}} \tn % Row Count 22 (+ 2) % Row 7 \SetRowColor{white} \_\_unix\_\_ & UNIX System \tn % Row Count 23 (+ 1) % Row 8 \SetRowColor{LightBackground} \_\_unix & UNIX System \tn % Row Count 24 (+ 1) % Row 9 \SetRowColor{white} \_\_WIN32\_\_ & MS Windows ab 95 \tn % Row Count 25 (+ 1) % Row 10 \SetRowColor{LightBackground} \_Windows & Zielsystem MS Windows \tn % Row Count 26 (+ 1) % Row 11 \SetRowColor{white} \_\_linux\_\_ & Linux-System \tn % Row Count 27 (+ 1) % Row 12 \SetRowColor{LightBackground} \seqsplit{\_\_FreeBSD\_\_} & FreeBSD \tn % Row Count 28 (+ 1) % Row 13 \SetRowColor{white} \seqsplit{\_\_OpenBSD\_\_} & OpenBSD \tn % Row Count 29 (+ 1) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{8.4cm}{x{1.76 cm} x{6.24 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Einfügen und Definieren (Textersetzungen)}} \tn % Row 0 \SetRowColor{LightBackground} \seqsplit{\#include} & `\#include \textless{}stdio.h\textgreater{}` //Aus Includeverzeichnis \{\{nl\}\} `\#include "projekt.h"` //Aus akt. Verzeichnis \tn % Row Count 4 (+ 4) % Row 1 \SetRowColor{white} \#define & `\#define PI 3.14159265 \{\{nl\}\} int mailn() \{\{nl\}\} \{ ~ printf("PI = \%f\textbackslash{}n", PI); \{\{nl\}\} ~ return 0 \{\{nl\}\} \}` \{\{nl\}\} //Ersetzt das PI im Queltext durch 3.14159265 \tn % Row Count 10 (+ 6) % Row 2 \SetRowColor{LightBackground} \#undef & `\#undef PI` \tn % Row Count 11 (+ 1) % Row 3 \SetRowColor{white} \# \seqsplit{operator} & `\#define Makro(a) printf(\#a)` \{\{nl\}\} //ersetzt bspw. \{\{nl\}\} `Makro(7);` \{\{nl\}\} //durch: \{\{nl\}\} `printf("7");` \tn % Row Count 15 (+ 4) % Row 4 \SetRowColor{LightBackground} \#\# \seqsplit{Operator} & `\#define Makro(i) temp \#\# i \{\{nl\}\} int temp1, temp2; \{\{nl\}\}Makro(1) = 5; \{\{nl\}\}//Wird zu \{\{nl\}\} temp1 = 5;` \tn % Row Count 19 (+ 4) \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{8.4cm}{x{1.2 cm} x{6.8 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Bedingte Kompilierung}} \tn % Row 0 \SetRowColor{LightBackground} \#if & `\#if defined PI \{\{nl\}\} //Kompiliert diesen Bereich nur, wenn PI definiert wurde. \{\{nl\}\}\#endif \{\{nl\}\} \#if \_Windows \{\{nl\}\} //Kompiliert diesen Bereich nur in Windows. \{\{nl\}\}\#endif` \tn % Row Count 6 (+ 6) % Row 1 \SetRowColor{white} \seqsplit{\#ifndef} & `\#ifndef projekt\_h \{\{nl\}\} //Kompiliert diesen Bereich nur, wenn projekt\_h noch nicht definiert wurde \{\{nl\}\} \#endif ` \tn % Row Count 10 (+ 4) % Row 2 \SetRowColor{LightBackground} \seqsplit{\#ifdef} & `\#ifdef projekt\_h \{\{nl\}\} //Kompiliert diesen Bereich nur, wenn projekt\_h definiert wurde \{\{nl\}\} \#endif ` \tn % Row Count 14 (+ 4) % Row 3 \SetRowColor{white} \#else & `\#ifdef DEBUG \{\{nl\}\} //Kompiliert diesen Bereich nur, wenn DEBUG definiert wurde \{\{nl\}\} \#else \{\{nl\}\} //Ansonsten wird dieser Bereich kompiliert \{\{nl\}\} \#endif ` \tn % Row Count 19 (+ 5) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{8.4cm}}{\#endif muss am Ende von jedem Bedingungsblock stehen!} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} \begin{tabularx}{8.4cm}{x{1.2 cm} x{6.8 cm} } \SetRowColor{DarkBackground} \mymulticolumn{2}{x{8.4cm}}{\bf\textcolor{white}{Compilerbezogene Befehle}} \tn % Row 0 \SetRowColor{LightBackground} \#line & `\#line 12345 "Neuer\_Dateiname.c" \{\{nl\}\} printf("Dieser Text steht in Zeile \%d in Datei \%s. \textbackslash{}n", \_\_LINE\_\_, \_\_FILE\_\_);` \{\{nl\}\} {\emph{//Gibt "Dieser Text steht in Zeile 12345 in Datei Neuer\_Dateiname.c" aus. \{\{nl\}\}Egal in welcher Datei und welcher Zeile der Code wirklich steht.}} \tn % Row Count 8 (+ 8) % Row 1 \SetRowColor{white} \seqsplit{\#pragma} & `\#pragma FENV\_ACCESS ON` \{\{nl\}\}//Weist den Compiler an, beim Kompilieren Überwachungen \& Exceptions rund um Flie{\ss}komma-Arithmetik einzubauen. \tn % Row Count 13 (+ 5) % Row 2 \SetRowColor{LightBackground} \seqsplit{\#error} & `\#ifndef Labelname \{\{nl\}\} \#error Labelname ist nicht definiert! \{\{nl\}\} \#endif \{\{nl\}\}` //Gibt einen Compilerfehler aus, wenn Labelname nicht definiert wurde. \tn % Row Count 18 (+ 5) \hhline{>{\arrayrulecolor{DarkBackground}}--} \SetRowColor{LightBackground} \mymulticolumn{2}{x{8.4cm}}{\#pragma Befehle k{\"o}nnen nur entweder in der obersten Ebene {\bf{vor der ersten Deklaration}} oder innerhalb eines Blockes {\bf{vor der ersten Deklaration}} eingesetzt werden!} \tn \hhline{>{\arrayrulecolor{DarkBackground}}--} \end{tabularx} \par\addvspace{1.3em} % That's all folks \end{multicols*} \end{document}