如何使用 \angle 命令並在 beamer 中產生 - 字元?

如何使用 \angle 命令並在 beamer 中產生 - 字元?

我需要能夠使用 \angle 命令並在演示文稿中生成 - 字符,但它們似乎在投影機中工作得不好。 \angle 指令在 pdf 中不會產生任何內容,而 - 字元在 pdf 中產生 * 字元。有人知道我該如何改變這件事嗎?

以下是我的簡報中的一些程式碼,但它並不完全按照我希望的方式運作:

\begin{theorem}
In neutral geometry, for any triangle $\triangle ABC$ there exists a triangle $\triangle A_1B_1C_1$ such that the two triangles have the same angle sums but $m\angle A_1 \leq \frac{1}{2} (m\angle A)$.
\end{theorem}

\end{frame}

答案1

這是我發現的!

\documentclass{beamer} \usepackage[utf8]{inputenc} \usepackage{graphicx} \usepackage[english]{babel} \usepackage{amsmath} \begin{document} \begin{frame} \begin{theorem} In neutral geometry, for any triangle $\triangle ABC$ there exists a triangle $\triangle A_1B_1C_1$ such that the two triangles have the same angle sums but $m\angle A_1 \leq \frac{1}{2} (m\angle A)$. \end{theorem} \end{frame} \end{document}

在此輸入影像描述

它滿足您的要求嗎?

問候 :)

相關內容