在图中添加零件编号和说明?

在图中添加零件编号和说明?

我想为包含由多个部分组成的对象的图形添加零件编号和描述。一个带有数字的圆圈、一条线和一个指向相关部分的点或箭头(假设是所含图像中的给定坐标)。

我该怎么做?有没有什么软件包可以帮我处理这个问题?

答案1

答案在使用 TikZ 在图像上绘图可以在这里使用;唯一使得这不完全重复的是如何添加注释;这可以使用pins 来完成;一个小例子:

\documentclass{article}
\usepackage{tikz}
\usepackage{graphicx}

\begin{document}

\begin{tikzpicture}[
every pin/.style={
  fill=orange!40,
  circle,
  minimum size=18pt,
  font=\footnotesize},
every pin edge/.style={
  <-,
  >=latex,
  thick,
  orange!40,
  shorten <=1pt,
  }
]
\node[anchor=south west,inner sep=0] 
  (image) at (0,0) 
  {\includegraphics[width=0.7\textwidth]{example-image-a}};
\begin{scope}[x={(image.south east)},y={(image.north west)}]

\node[pin={[pin distance=1.2cm]60:1}] at (0.6,0.42) {};
\node[pin={90:2}] at (0.5,0.72) {};
\node[pin={[pin distance=2cm]160:3}] at (0.5,0.43) {};

% The coordinate grid
\draw[help lines,xstep=.1,ystep=.1] (0,0) grid (1,1);
\foreach \x in {0,1,...,9} { \node [anchor=north] at (\x/10,0) {0.\x}; }
\foreach \y in {0,1,...,9} { \node [anchor=east] at (0,\y/10) {0.\y}; }   
\end{scope}
\end{tikzpicture}

\end{document}

在此处输入图片描述

一旦辅助网格被注释掉:

在此处输入图片描述

相关内容