如何使用 \tanh-function 获得大括号?

如何使用 \tanh-function 获得大括号?

我想显示一个包含分数的 tanh 的函数,即, \tanh(\frac{x - g}{h}) 但它会给我正常的小括号。我已经尝试过了,\tanh\(\frac{x - g}{h}\)但这完全省略了括号。那么我怎样才能得到包含整个分数的大括号呢?

答案1

举几个例子:

\documentclass{article}

\begin{document}

$\tanh\left(\frac{x - g}{h}\right)$

\[
\tanh\left(\frac{x - g}{h}\right)
\]

$\tanh\bigl(\frac{x - g}{h}\bigr)$

\[
\tanh\Bigl(\frac{x - g}{h}\Bigr)
\]

\end{document}

在此处输入图片描述

答案2

\documentclass{book}
\begin{document}
\[ \tanh\left(\frac{x - g}{h}\right) \]

\end{document}

相关内容