如何在 LaTeX 中生成单个括号?我只想插入“ [ ”而不关闭括号。有办法吗?
答案1
如果您希望拥有可扩展的支架,您应该使用以下命令:
\[ % Enter math mode
\left[ your_formula_goes_here\right]
\]
如果只想保留一侧,请使用:
\[ % Enter math mode
\left[ your_formula_goes_here\right.
\]
或者
\[ % Enter math mode
\left. your_formula_goes_here\right]
\]
取决于侧面。
重要的是始终以\right<**>
你用 开头的内容结尾\left<*>
。请注意,正如@Werner 提到的,*
和**
可能与 不同\(\left] x^{x^{x^x}}\right\}\)
。