数学符号未加载

数学符号未加载

在我的文档中,我尝试加载一些数学符号,但无法加载。例如,下面是我遇到问题的一行代码。

\item Know (or be able to compute by hand) the values resulting
 from inputting $\frac{k\pi}{12}, \, k \in \Z$ into the $/sin , 
/cos , /tan , /sec , /csc , /cot , /cis$ functions.

但是,这是我得到的结果。请注意,众所周知的整数集缺失了,三角函数没有配置,并且“元素”符号看起来有点奇怪。

在序言中,我列出了我想使用的软件包。这些是我拥有的软件包:{ifthen,amsmath,amssymb,amsthm,bm,graphicx,color}。我已经能够让符号显示在我制作的每一个文档中,但不知道我现在做错了什么……

答案1

您需要始终使用反斜杠。此外,\Z\cis并未预定义,您需要定义它们。

还要注意,公式列表不是单个公式。因此,你应该将初始公式的两个部分分成两个不同的部分。感觉需要\,则表明您应该考虑公式,而不是一个。

\documentclass{article}
\usepackage{amsmath,amssymb}

\DeclareMathOperator{\cis}{cis}
\newcommand{\Z}{\mathbb{Z}}

\begin{document}

\begin{itemize}
\item Know (or be able to compute by hand) the values resulting from
  inputting $\frac{k\pi}{12}$, $k \in \Z$, into the $\sin$, $\cos$,
  $\tan$, $\sec$, $\csc$, $\cot$, $\cis$ functions.
\end{itemize}

\end{document}

在此处输入图片描述

答案2

请使用\而不是/

\item Know (or be able to compute by hand) the values resulting from inputting $\frac{k\pi}{12}, \, k \in \mathbb{Z}$ into the $\sin , \cos , \tan , \sec , \csc , \cot$ functions.

在此处输入图片描述

相关内容