Latexを使っていて、画像だけ他のソフトで作成するというのが納得いかなかったので、いろいろ調べながら作図してみたものを載せていきます。
はじめは、数学の一辺の長さの表記などを作成する際に苦労しました。
同じような悩みを抱えている方もいらっしゃるかと思うので、参考にしていただければと思います。
例1
TeX
\begin{tikzpicture}
\draw [thick] (0,0) -- (0,4) -- (1,3) -- (1,-1) --cycle;
\filldraw [gray!60] (0.5,1.5) circle (3mm and 10mm);
\node [draw, circle, color=red, inner sep=7mm,label={[red]center:Target}] (Target) at (-2,1.5) {};
\draw [dashed] (Target.north) -- ++(2.5,0)
(Target.south) -- ++(2.5,0);
\draw [very thick, -stealth] (-5,3) node [above right] {入射粒子} -- ++(4,0);
\draw [very thick, -stealth] (-5,2) -- ++(2,0);
\draw [very thick, -stealth] (-5,1) -- ++(2,0);
\draw [very thick, -stealth] (-5,0) -- ++(4,0);
\end{tikzpicture}
例2
TeX
\begin{tikzpicture}
\filldraw [thick,fill=gray!50] (0,0) -- (0,4) coordinate (A) -- (1,3) -- (1,-1) --cycle;
\draw [thick] (0,4) -- (4,4) coordinate (B) -- (5,3) -- (5,-1) -- (1,-1)
(1,3) -- (5,3);
\draw [bend left, distance=1cm] (A) to node [midway,fill=white] {\Large$v_{a}dt$} (B);
\node at (0.5,1.5) {\Large$A$};
\node at (2.5,1.5) {\Large$dN$個};
\end{tikzpicture}