LaTeX 中 '(' 和 '\(' 有什么区别

LaTeX 中 '(' 和 '\(' 有什么区别

我是 LaTeX 新手,我想知道(和之间有什么区别吗\(?如果有,这种区别是否适用于其他类型的括号和关键字?谢谢 :)

答案1

这份小文件展示了各种括号的用法以及\...和的轻微矛盾性...

\(...\)用于启动正常的内联数学模式,也可以这样写$...$。Pure(...)将显示括号,但它们也可以作为分隔符出现,请参见pstricks定义的宏或命令,\NewDocumentCommand其中xparse可以使用其他分隔符。

\[...\]进入数学显示模式。

[...] 既可以具有文字括号的含义,也可以被解释为命令的可选参数的分隔符,例如\chapter[Foo]{Foo bar}[...]那么这些就不会显示。

现在稍微矛盾的定义:{...}是组分隔符,不直接显示。如果要排版它们,请使用\{\}

\documentclass{article}

\begin{document}

Starting math mode: \( E=mc^2 \)

Display parentheses:  ( E -- non-math mode ) and \( ( E ) \) 
\vskip\baselineskip
\hrule
\vskip\baselineskip
Starting display mode: \[ E = mc^2 \]

Displaying brackets  [ ]
\vskip\baselineskip
\hrule
\vskip\baselineskip
Starting group mode { \bfseries this is bold }

Displaying braces  \{ \} 

\end{document}

相关内容