
バイトを表すマルチパートノードを作成しようとしています
書い
\Byte{0 1 0 0 1 1 0 0}
たり\Byte {0, 1, 0, 0, 1, 1, 0, 0}
入手したりできれば いいのに
\documentclass[12pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.multipart}
\newcommand{\Byte}{
\node [rectangle split,rectangle split parts=8, rectangle split horizontal,draw ] at (2,2)
{\nodepart{one}0\nodepart{two}1\nodepart{three}0\nodepart{four}0\nodepart{five}1\nodepart{six}1\nodepart{seven}0\nodepart{eight}0};
}
\begin{document}
\begin{tikzpicture}
\Byte
\end{tikzpicture}
\end{document}
答え1
ここでは、目的の呼び出しの 2 番目でこれを行う 1 つの方法を示します。この方法では、 を使用して\foreach
ノード コンテンツを構築し、呼び出す前にノードを準備します。
\documentclass[12pt]{standalone}
%\url{http://tex.stackexchange.com/q/67923/86}
\usepackage{etoolbox}
\usepackage{tikz}
\usetikzlibrary{shapes.multipart}
\def\numtext#1{%
\ifcase#1\or one\or two\or three\or four\or five\or six\or seven\or eight\or nine\or ten\or
eleven\or twelve\or thirteen\or fourteen\or fifteen\or sixteen\or seventeen\or eighteen\or nineteen\or twenty\or Lots\fi}
\newcommand{\Byte}[1]{
\def\nodecontents{}%
\foreach[count=\l] \k in {#1} {
\xappto{\nodecontents}{\noexpand\nodepart{\numtext{\l}}\k}
}
\node [rectangle split,rectangle split parts=8, rectangle split horizontal,draw ] at (2,2)
{\nodecontents};
}
\begin{document}
\begin{tikzpicture}
\Byte {0, 1, 0, 0, 1, 1, 0, 0}
\end{tikzpicture}
\end{document}
結果:
答え2
を使用すると\def
、次のように記述できます\Byte(0,1,0,0,1,0,1,1)
。
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes.multipart}
\def\Byte(#1,#2,#3,#4,#5,#6,#7,#8){
\node [rectangle split,rectangle split parts=8, rectangle split horizontal,draw ] at (2,2)
{\nodepart{one}#1\nodepart{two}#2\nodepart{three}#3\nodepart{four}#4\nodepart{five}#5\nodepart{six}#6\nodepart{seven}#7\nodepart{eight}#8};
}
\begin{document}
\begin{tikzpicture}
\Byte(0,1,0,0,1,0,1,1)
\end{tikzpicture}
\end{document}