如何在乳胶中绘制距离规则图的距离分布图

如何在乳胶中绘制距离规则图的距离分布图

在此处输入图片描述

如何在乳胶中绘制距离规则图的距离分布图

答案1

既然你是新手,这里有一个可行的方法来实现这些功能。通常,这类问题很可能得不到解答,因为没有人真的愿意从屏幕截图中输入所有文本。(编辑,every label/.style={font=\small}:根据 AndréC 的建议添加。)

\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}[mycirc/.style={circle,draw,fill=white,minimum
size=1cm},every label/.style={font=\small}]
\draw (0,0) node[mycirc,label={[anchor=north west]0:$k$}]{1}
-- ++ (2.7,0)node[mycirc,label={[anchor=north east]180:$1$},
label={[anchor=north west]0:$b_1$},label={[]below:$a_1$}]{$k$}
-- ++ (2.7,0)node[mycirc,label={[anchor=north east]180:$c_2$},
label={[anchor=north
west]0:$b_2$},label={[]below:$a_2$}]{$k_2$}
-- ++ (0.8,0) edge[dotted] ++ (1.5,0) 
++ (1.5,0) -- 
++(0.8,0)node[mycirc,label={[anchor=north east]180:$c_{D-1}$},
label={[anchor=north
west]0:$b_{D-1}$},label={[]below:$a_{D-1}$}]{$k_{D-1}$}
-- ++ (2.7,0)node[mycirc,label={[anchor=north east]180:$c_D$},
label={[anchor=north
west]0:$b_D$},label={[]below:$a_D$}]{$k_D$};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容