2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/tikz/stack/stack.tex
2012-08-09 07:04:38 +02:00

19 lines
435 B
TeX

\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
\setlength\PreviewBorder{2mm}
\usepackage{tikz}
\usetikzlibrary{shapes.multipart}
\begin{document}
\begin{preview}
\begin{tikzpicture}[stack/.style={rectangle split, rectangle split parts=#1,draw, anchor=center, fill=white}]
\node[stack=5] {
\nodepart{two}a
\nodepart{three}c
\nodepart{four}c
\nodepart{five}b
};
\end{tikzpicture}
\end{preview}
\end{document}