diff options
Diffstat (limited to 'application-devel/posix-ipc')
| -rw-r--r-- | application-devel/posix-ipc/Makefile | 4 | ||||
| -rw-r--r-- | application-devel/posix-ipc/pres_posix_ipc_de.tex | 77 |
2 files changed, 12 insertions, 69 deletions
diff --git a/application-devel/posix-ipc/Makefile b/application-devel/posix-ipc/Makefile index 4663d52..d641258 100644 --- a/application-devel/posix-ipc/Makefile +++ b/application-devel/posix-ipc/Makefile @@ -1,7 +1,7 @@ all: for pdf in `ls -1 *.tex` ; do \ - pdflatex $$pdf; \ - pdflatex $$pdf; \ + TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ + TEXINPUTS=`pwd`/../..:.:..:$(TEXINPUTS) pdflatex $$pdf; \ done clean: diff --git a/application-devel/posix-ipc/pres_posix_ipc_de.tex b/application-devel/posix-ipc/pres_posix_ipc_de.tex index cd5027e..9174c17 100644 --- a/application-devel/posix-ipc/pres_posix_ipc_de.tex +++ b/application-devel/posix-ipc/pres_posix_ipc_de.tex @@ -1,79 +1,20 @@ -\documentclass[11pt]{beamer} - -%\usepackage{ngerman} -\usepackage{times} -\usepackage{graphicx} -\usepackage{pgf,pgfarrows,pgfnodes,pgfautomata,pgfheaps} -\usepackage{amsmath,amssymb} -\usepackage[utf8]{inputenc} -\usepackage{listings,color} -\definecolor{lbcolor}{RGB}{255,210,150} -\lstset{ - language=C, - numbers=left, - stepnumber=1, - numbersep=5pt, - numberstyle=\tiny, - breaklines=true, - breakautoindent=true, - postbreak=\space, - tabsize=2, - basicstyle=\ttfamily\fontsize{7}{9}\selectfont, - showspaces=false, - showstringspaces=false, - extendedchars=true, - backgroundcolor=\color{lbcolor}, - keywordstyle=\bf , - commentstyle=\color{green}, - stringstyle=\color{red} -} - -\mode<presentation> -{ - \usetheme{linutronix} -} +\input{configpres} -% on the following slides, include icon in the left sidebar \def\lximg{/usr/share/lx/icons/fueller.png} -\title{POSIX IPC} -\institute{Linutronix GmbH} - -\begin{document} +\subsection{POSIX IPC} -\frame{ \titlepage } +\title{POSIX IPC} +\maketitle % stop displaying 'fueller.png' on the following slides \def\lximg{none} -%\AtBeginSection[] -%{ -% \begin{frame}<beamer> -% \tableofcontents[currentsection,currentsubsection] -% \end{frame} -%} - -\AtBeginSubsection[] -{ - \begin{frame}<beamer> - \tableofcontents[currentsection,currentsubsection] - \end{frame} -} - \begin{frame} \tableofcontents \end{frame} -\begin{frame} -\frametitle{POSIX IPC: Übersicht} -\begin{itemize} -\item Message Queues -\item Semaphores -\item Shared Memory -\end{itemize} -\end{frame} - -\section{Message Queues} +\subsubsection{Message Queues} \begin{frame} \frametitle{POSIX Message Queues} \begin{itemize} @@ -202,7 +143,7 @@ return 0; \end{lstlisting} \end{frame} -\section{Semaphoren} +\subsubsection{Semaphoren} \begin{frame} \frametitle{POSIX Semaphoren: Übersicht} \begin{itemize} @@ -335,7 +276,8 @@ return 0; \end{lstlisting} \end{frame} -\section{Shared Memory} +\subsubsection{Shared Memory} + \begin{frame} \frametitle{Shared Memory: Übersicht} \begin{itemize} @@ -411,4 +353,5 @@ out: return ret; \end{lstlisting} \end{frame} -\end{document} + +\input{tailpres} |
