如果可能的话,我想画一些带有数字的形状(三角形、圆形以及三角形和圆形)
答案1
我非常肯定这个帖子texample.net 上的代码可能会对你有很大帮助。这里我报告了一个可能有助于你入门的小片段:
% Regular polygons
\documentclass{article}
\usepackage{tikz}
\begin{document}
% Radius of regular polygons
\newdimen\R
\R=2cm
\begin{tikzpicture}
% Triangle
\draw (0:\R) \foreach \x in {120,240} {
-- (\x:\R)
} -- cycle (90:\R);
\node[align=center] {Triangle};
% Circle
\draw (5,0) circle (\R) node[align=center] {Circle};
\end{tikzpicture}
\end{document}
输出结果如下:
当然,您可以通过简单地为两个形状指定相同的起始坐标来围绕三角形绘制一个圆圈。只需调整参数并尝试找到最适合您需求的参数即可。