绘制不同媒介的草图

绘制不同媒介的草图

我想用 Ti 绘制附图LaTeX 中的 Z-PGF 包,您有什么建议或建议我应该从哪里开始吗?

在此处输入图片描述

答案1

欢迎来到 TeX.SE!本网站的目的是交换代码和询问代码问题,而不是让别人帮你画东西。由于你是新手,这里有一些代码可以让你入门。

\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\draw[latex-latex,blue] (0,2) node[left]{$y$} -- (0,0) node[circle,draw,inner
sep=1.5pt]{} node[below left]{$z$} -- (2,0) node[below]{$x$};
\node[draw,blue,minimum width=7cm,minimum height=4cm] (box) at (7,2){};
\node[cyan,anchor=south] at (box.south) {water};
\draw[latex-latex] ([yshift=-3mm]box.south west) -- ([yshift=-3mm]box.south east)
node[midway,below] {length};
\draw[latex-latex] ([xshift=3mm]box.south east) -- ([xshift=3mm]box.north east)
node[midway,right] {height};
\draw[blue] ([yshift=5mm]box.west) -- ++ (-5mm,0) coordinate(aux1) |- ([yshift=-5mm]box.west)
coordinate[pos=0.5] (aux2);
\draw[latex-latex,red] ([xshift=-3mm]aux2) -- ([xshift=-3mm]aux1)
node[sloped,midway,above=2mm] {air diam};
\node[above left=1cm of aux1,anchor=south east,red] {Air};
\end{tikzpicture}
\end{document}

在此处输入图片描述

这是一个所谓的最小工作示例,即以 开头\documentclass和以 结尾的可编译代码\end{document}。我恳请您在以后的问题和答案中附加此类 MWE。

相关内容