成组公式环境align运行报错

2019-09-15 17:12发布

[图]一个很简单的两个反三角函数的导数公式,不知道问什么运行会报错。代码\documentclass[UTF8,a4paper,12pt]{ctexart} \usepackage[left=2.54cm,...

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

代码

\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条回答

我看到的问题是 arccot 这个没有定义的,我随便换了 arccos 编译没有问题。操作符定义下吧。具体是啥我也不知道。

\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(\arccos x\right)^{'}&=-\frac{1}{1+x^2}
\end{align}
\end{document}

编译没有问题。

一周热门 更多>