added schildchengeneratortikz for networksockets

This commit is contained in:
john stone 2013-11-18 01:44:25 +01:00
parent 1f2756fc3a
commit cf371175dd
2 changed files with 20 additions and 0 deletions

BIN
schildchen/schildchen.pdf Normal file

Binary file not shown.

20
schildchen/schildchen.tex Normal file
View File

@ -0,0 +1,20 @@
\documentclass[a4paper,12pt]{scrartcl}
\usepackage{tikz}
\usepackage{pgffor}
\usetikzlibrary{positioning}
\usetikzlibrary{calc}
\usepackage{fontspec}
\setmainfont[Scale=1.4]{Schwabacher}
\begin{document}
\tikzstyle{nnnode}=[draw,minimum width=2cm,minimum height=1cm,inner sep=0,outer sep=0]
\begin{tikzpicture}
\foreach \y in {1,3,...,23} {%
\node [nnnode](left\y) at ($ .8*(0,\y)$) {\textbf{\y}};%
\pgfmathparse{int(\y + 1)} \node [nnnode,anchor=east] at (left\y.west) {\textbf{\pgfmathresult}};
}%
\end{tikzpicture}
\end{document}