📜  \ overparen-Tex命令(1)

📅  最后修改于: 2023-12-03 15:13:13.485000             🧑  作者: Mango

Overparen-Tex 命令

Overparen-Tex 命令是一种 LaTeX 命令,用于在数学公式中添加上括号。它提供了多个参数和选项,使用户能够根据需要灵活地定制上括号的样式。

使用方法

在 LaTeX 中使用 Overparen-Tex 命令需要将其导入到文档中。在导言区中添加以下代码:

\usepackage{yhmath}

在正文中,我们可以使用丰富的参数和选项对上括号进行定制。例如,我们可以使用 \wideparen 命令来创建一个大括号,代码如下:

\wideparen{AB}

结果将会是:

wideparen_example

\wideparen 之外,Overparen-Tex 还提供了多个其他的命令,如 \Overbrace\underbrace 等,可以用于创建上下多层的括号。这些命令及其使用方法请参考相应的官方文档。

示例代码
\documentclass{article}
\usepackage{yhmath}

\begin{document}
    % 创建一个大括号
    $\wideparen{AB}$

    % 创建一个上括号
    $\Overbrace{AB}$

    % 创建一个下括号
    $\underbrace{AB}$

    % 创建一个上下多层的括号
    $\overleftrightarrow{\underline{AB}}$
\end{document}
效果展示

overparen_example

以上就是 Overparen-Tex 命令的介绍,希望对您有所帮助。