成组公式环境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条回答
registor
2019-09-16 08:46

可以用\DeclareMathOperator{command}{text}定义一个数学运算符,然后就可以使用这个命令了,如:

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


一周热门 更多>