我编写了此代码,但当我按 F5 时,它会无限运行并且不会产生任何结果。这是我第一次在 LaTeX 中使用 tikz 包,我没有任何经验。(我正在使用 Ubuntu)。
\documentclass{article}
\usepackage{tikz, tkz-euclide}
\begin{document}
\begin{tikzpicture}
\tkzDefPoints{ 0/0/O,
8/0/A,
12.5/0/C}
\tkzDefPoints(45:9.6){B}
\tkzDefLine[parallel=through C](A,B)
\tkzDrawPoints(O, A, B, C)
\end{tikzpicture}
\end{document}
答案1
这是您上面分享的代码的工作版本。希望对您有帮助
\documentclass{article}
\usepackage{tkz-euclide} % tikz is loaded by tkz-euclide
\begin{document}
\begin{tikzpicture}
\tkzDefPoints{0/0/O,
8/0/A,
12.5/0/C}
\tkzDefPoint(45:9.6){B}
\tkzDefLine[parallel=through C](A,B)
\tkzDrawPoints(O, A, B, C)
\end{tikzpicture}
\end{document}