阶梯条形图

阶梯条形图

我是 LaTeX 新手。我研究过如何绘制图表,发现 TikZ 可以提供帮助。请问有人能用下面的图片给我指点一下方向吗...

我的文档使用了article的类,它非常简单。希望有人能帮忙。

答案1

您在这里问的问题可以在这里的一些帖子中找到。一些建议:

  • 将一些参数存储在 Ti 中可能会有优势Z 函数通过declare function
  • 您可以沿路径在尖角和圆角之间切换。为了使此功能更实用,您可以定义快捷方式,如以下代码中的sc和。rc
  • 对于随机形状,您可以使用装饰random steps

除此之外,产生所需的输出大多是乏味的。

\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\begin{tikzpicture}[declare function={L=3;t=0.8;d=3;r=0.4;P=4;},
    rc/.style={rounded corners=r*1cm},sc/.style={sharp corners},
    >=stealth]
 \draw[semithick] (0,0) coordinate (start)-- ++ (0,d) foreach \X [count=\Y] in 
  {0.1,0.1+0.8/3,0.1+1.6/3,0.9} {coordinate[pos=\X] (auxL\Y) 
    } [rc] -- ++ (P,0) [sc] -- ++ (0,t)  coordinate (p1)
  --++ (L,0) coordinate[pos=0.4] (p2) coordinate (p3) [rc] -- ++ (0,-t) [sc] 
  -- ++ (P,0)   coordinate[pos=0.3] (p4) coordinate[pos=0.4] (p5)  coordinate (p6)
   -- ++ (0,-d)  coordinate (p7)
  foreach \X [count=\Y] in 
  {0,1/3,2/3,1} {coordinate[pos=\X] (auxR\Y) 
    }
  [rc] -- ++(-P,0)[sc] --++ (0,-t) coordinate (p8)
  -- ++(-L,0) [rc] --++(0,t) coordinate (p12) [sc] -- cycle
  ([xshift=0.6cm]auxR2) node[right]{$S$}
  foreach \Y in {1,...,4}
  {(auxR\Y) edge[->,shorten <=2pt] ++ (0.6,0)
  (auxL\Y) node[left,circle,draw,inner sep=2pt](c\Y) {}};
 \draw ([yshift=2mm]p1) -- coordinate (p9) ++ (0,0.8) ([yshift=2mm]p3) -- ++ (0,0.8)
    ([xshift=2mm]p3) -- ++ (0.8,0) coordinate[pos=0.8] (p10)
    ([xshift=2mm]p8) -- ++ (0.8,0) coordinate[pos=0.8] (p11);
 \draw[<->] (p2) -- node[fill=white]{$H$} (p2|-p8); 
 \draw[<->] (p9) -- node[fill=white]{$L$} (p3|-p9); 
 \draw[<->] (p10) -- node[fill=white]{$t$} (p10|-p6); 
 \draw[<->] (p11) -- node[fill=white]{$t$} (p11|-p7); 
 \draw[<->] (p5) -- node[fill=white]{$d$} (p5|-p7); 
 \draw[<-] (p12) ++ (45:r) ++ (-r,-r) -- ++ (-135:0.5) node[below left] {$r$};
 \fill[decorate,decoration={random steps,segment length=pi*1pt},gray!50] 
 (c1.west|-start) to[bend left] ++ (0,d);
 \draw (c1.west|-start) -- ++ (0,d);
\end{tikzpicture}
\end{document}

在此处输入图片描述

我希望这能为您提供一个起点以及绘制所需图表的一些信息。

相关内容