Description
The code defines a LaTeX document of class "standalone" with the "varwidth" option. It loads the TikZ package and several TikZ libraries for positioning, chains, and shapes.
It then sets the length of a node to a specified width using \newlength
and \setlength
. In the TikZ environment, it sets the style of every node to a rectangle split with a draw option and a 90-degree rotation. The rectangle split is divided into 10 parts. Finally, it creates a node with a rectangle split shape and a specified minimum width and height.
Keywords
TikZ, positioning, chains, shapes, rectangle split.
Source Code
\documentclass[varwidth]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{chains}
\usetikzlibrary{shapes.multipart}
\begin{document}
\newlength\nodewidth
\setlength\nodewidth{120mm}
\begin{tikzpicture}
\tikzset{every node/.style={rectangle split, draw, rotate=90}, rectangle split parts=10}
\node[rectangle split, minimum width= 1.2cm,
minimum height = 1cm] {};
\end{tikzpicture}
\end{document}