tan 的反函数怎么写

tan 的反函数怎么写

我想在 latex 中写入 tan 逆函数。我需要按原样写入 tan 逆,而不是 arctan。该代码是什么?我需要写一个方程 theta = tan 逆 (x/y)。

答案1

使用,在序言中amsmath添加,并在正文中使用。\DeclareMathOperator{\taninv}{tan\,inverse}\taninv

示例代码:

\documentclass{article}
\usepackage{amsmath}

\DeclareMathOperator{\taninv}{tan\,inverse}

\begin{document}

\begin{equation*}
\theta=\taninv\frac{x}{y}
\end{equation*}

\end{document}

在此处输入图片描述

我从未见过这样的符号。但是,如果你以后想坚持使用更常见的符号,只需将这一行改为

\DeclareMathOperator{\taninv}{arctan}

或者

\newcommand{\taninv}{\tan^{-1}}

相关内容