如何在 LaTeX 中绘制三角形?

如何在 LaTeX 中绘制三角形?

我知道如何绘制:

\triangle{ABC}

它将显示

在此处输入图片描述

但是我该如何绘制:

在此处输入图片描述

答案1

PSTricks 解决方案仅用于娱乐或比较目的。使用xelatex或进行编译latex-dvips-ps2pdf

\documentclass[pstricks,12pt]{standalone}
\usepackage{pst-eucl}
\begin{document}
\pspicture(8,6)
\pstTriangle(1,1){A}(7,1){C}(7,5){B}
\pstRightAngle{A}{C}{B}
\endpspicture
\end{document}

在此处输入图片描述

答案2

tikz

\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
  \draw (0,0)node[below left]{A} -- 
  ++(2,0)node[below right]{C}coordinate(C) --
  ++(0,2)node[below right]{B} -- cycle;
  \draw (C) +(-3mm,0mm) |- +(0mm,3mm);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容