一个很简单的两个反三角函数的导数公式,不知道问什么运行会报错。

代码

\documentclass[UTF8,a4paper,12pt]{ctexart}
\usepackage[left=2.54cm,right=2.54cm,top=3.18cm,bottom=3.18cm]{geometry}%页面设置
\usepackage{amsmath,amssymb,amsfonts}%数学公式
\begin{document}
\section{title}
\begin{align}
   \left(\arctan x\right)^{'}&=\frac{1}{1+x^2}\\
   \left(\arccot x\right)^{'}&=-\frac{1}{1+x^2} 
\end{align}
\end{document}

出错提示

2.png1.png

3 回答3

1
<p>我看到的问题是 arccot 这个没有定义的,我随便换了 arccos 编译没有问题。操作符定义下吧。具体是啥我也不知道。</p><pre class="brush:plain;toolbar:false">\documentclass[UTF8,a4paper,12pt]{ctexart} \usepackage[left=2.54cm,right=2.54cm,top=3.18cm,bottom=3.18cm]{geometry}%页面设置 \usepackage{amsmath,amssymb,amsfonts}%数学公式 \begin{document} \section{title} \begin{align}    \left(\arctan x\right)^{&#39;}&=\frac{1}{1+x^2}\\    \left(\arccos x\right)^{&#39;}&=-\frac{1}{1+x^2} \end{align} \end{document}</pre><p>编译没有问题。<br></p>
0
<p>arccot 没有被定义。可以考虑用 operatorname 来包住它。具体的用法找 amsmath 手册</p>
0
<p>可以用\DeclareMathOperator{command}{text}定义一个数学运算符,然后就可以使用这个命令了,如:</p><pre class="brush:plain;toolbar:false">\documentclass[UTF8,a4paper,12pt]{ctexart} \usepackage[left=2.54cm,right=2.54cm,top=3.18cm,bottom=3.18cm]{geometry}%页面设置 \usepackage{amsmath,amssymb,amsfonts}%数学公式 % 定义数学运算符 \DeclareMathOperator{\arccot}{arccot} \begin{document} \section{title} \begin{align}    \left(\arctan x\right)^{&#39;}&=\frac{1}{1+x^2}\\    \left(\arccot x\right)^{&#39;}&=-\frac{1}{1+x^2}  \end{align} \end{document}</pre><p><br></p>

你的回答

请登录后回答

你的回答将会帮助更多人,请务必认真回答问题。