我想画一个三角形(使用 TikZ 包)。我不知道如何画出连接点的线BC
。我知道我必须使用这些命令:+(a,b)
,,++(a,b)
。(a:b|-c,d)
不幸的是,我无法使用任何这些命令,所以请解释一下如何使用这些命令以及它们的含义。
请详细介绍这些命令。 此外,我还需要一条连接点的线AB
。我不要=45°
需要我的 LaTeX 文档中的点和“ ”。
答案1
我可能不比你知道tikz
得多(作为 MetaPost 用户),但出于好奇,我刚刚查阅了开头相当优雅的教程其文档(第 28-93 页),我得出了这个结论:
\documentclass[12pt, border=5mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (0,0) node[anchor=north]{$A$}
-- (4,0) node[anchor=north]{$C$}
-- (4,4) node[anchor=south]{$B$}
-- cycle;
\end{tikzpicture}
\end{document}
本教程可能可以解答您的大部分问题:必读。
答案2
五年后……
- 对于起点使用@Franck Pastor 很好的答案 (+1)
- 而是使用带有标签的坐标节点
- 添加的是角度值(使用
siunitx
)
\documentclass[12pt, tikz, border=5mm]{standalone}
\usetikzlibrary{angles,
quotes}
\usepackage{siunitx}
\begin{document}
\begin{tikzpicture}[
my angle/.style = {draw, fill=teal!30,
angle radius=7mm,
angle eccentricity=1.1,
right, inner sep=1pt,
font=\footnotesize}
]
\draw (0,0) coordinate[label=below:$A$] (a) --
(4,0) coordinate[label=below:$C$] (c) --
(4,4) coordinate[label=above:$B$] (b) -- cycle;
\pic[my angle, "$\alpha=\SI{45}{\degree}$"] {angle = c--a--b};
\end{tikzpicture}
\end{document}