سؤال

لقد انتهيت للتو من مخططي الأول في تيك. يبدو أنني أردت ذلك ، لكنني غير راضٍ عن كيفية "ترميزه":

\begin{tikzpicture}
[node distance=14mm,
 item/.style={rounded corners,rectangle,
   thick,
   minimum width=20mm, minimum height=10mm}]

\node[item,draw=blue!50,fill=blue!20] (stack) {1394 Stack};
\node[item,left=of stack,draw=green!50,fill=green!20,yshift=-9mm] (app1) {Application};
\node[item,left=of stack,draw=green!50,fill=green!20,yshift=9mm] (app2) {Application};
\node[item,right=of stack,draw=orange!50,fill=orange!20] (ohci) {OHCI};
\node[item,right=of ohci,yshift=-15mm,draw=yellow!70,fill=yellow!35] (dev1) {Device};
\node[item,right=of ohci,yshift=0mm,draw=yellow!70,fill=yellow!35] (dev2) {Device};
\node[item,right=of ohci,yshift=15mm,draw=yellow!70,fill=yellow!35] (dev3) {Device};

\draw[thick] (app1) -- (stack)
             (app2) -- (stack)
             (stack) -- (ohci)
             (ohci) -- (dev1)
             (ohci) -- (dev2)
             (ohci) -- (dev3);

\node[xshift=7mm,yshift=1mm] (topUser) at (app1.east |- dev3.north) {};
\node[xshift=7mm,yshift=-1mm,label=above left:User space] (botUser) at (app1.east |- dev1.south) {};
\draw[dashed] (topUser) -- (botUser);

\node[xshift=7mm,yshift=1mm] (topKern) at (stack.east |- dev3.north) {};
\node[xshift=7mm,yshift=-1mm,label=above left:Kernel space,
label=above right:Hardware\phantom{p}] (botKern) at (stack.east |- dev1.south) {};
\draw[dashed] (topKern) -- (botKern);
\end{tikzpicture}

الأشياء التي أنا غير مرتاح لها هي:

كيف قمت بنقل العقد يدويًا "التطبيق" و "الجهاز" باستخدام العقد yshift لتفاديهم بصرف النظر عن بعضهم البعض. أنا متأكد من أنه يجب أن تكون هناك طريقة أكثر أناقة لإنتاج بنية بسيطة تشبه الأشجار

الخطوط (topKern -- botKern و topUser -- botUser) الانتقال من الجزء العلوي من الصورة إلى القاع ؛ يتم محاذاة هذه يدويًا على المحور السيني لتكون بين العقدتين باستخدام xshift=7mm.

استخدامي \phantom{p} لضمان أن تحتوي التسمية "الأجهزة" على نفس خط الأساس مثل الملصقتين الأخريين.

هل كانت مفيدة؟

المحلول

لبناء هيكل شجرة ، استشر pgfmanual.pdf, جعل الأشجار تنمو.

بالنسبة للخطوط ، سأقوم بإنشاء عقد تمثل في منتصف العقدتين ، ثم استخدم نظام الإحداثيات العمودي كما فعلت. كما يمكنك استخدام current bounding box لتحديد "الحدود".

لمحاذاة خطوط الأساس بشكل صحيح ، حدد text height و text depth. في حالتك ، على سبيل المثال في النمط every label. لكن كما ترى ، فعلت الملصقات كأعقد أدناه ...

\begin{tikzpicture}[level distance=35mm,node distance=15mm,text height=1.5ex,text depth=0.25ex]

\begin{scope}[every node/.style={rounded corners,rectangle,thick,minimum width=20mm, minimum height=10mm}]
\begin{scope}[level 1/.style={sibling distance=19mm,nodes={fill=green!20,draw=green!50}}]
\node[draw=blue!50,fill=blue!20] (stack) {1394 Stack} [grow=left]
  child {node (app2) {Application}}
  child {node (app1) {Application}};
\end{scope}

\begin{scope}[level 1/.style={sibling distance=15mm,nodes={fill=yellow!70,draw=yellow!35}}]
\node[right= of stack,draw=orange!50,fill=orange!20] (ohci) {OHCI} [grow=right]
  child {node {Device}}
  child {node {Device}}
  child {node {Device}};
\end{scope}
\end{scope}

\node[below=0mm of app1] (userspace) {User space};
\node at (userspace -| stack) (kernel) {Kernel};
\node at (userspace -| ohci) (hardware) {Hardware}; 

\path (app1) -- (stack) node[coordinate,midway] (between1) {};
\draw (ohci) -- (stack) node[coordinate,midway] (between2) {};

\draw[dashed] (current bounding box.north -| between1) -- (current bounding box.south -| between1);
\draw[dashed] (current bounding box.north -| between2) -- (current bounding box.south -| between2);

\end{tikzpicture}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top