How do you produce a single bracket in LaTeX? I just want to insert a " [ " without closing the bracket. Is there a way to do this?
Asked
Active
Viewed 3.9k times
1 Answers
26
If you wish to have have a scaleable bracket you should use the following:
\[ % Enter math mode
\left[ your_formula_goes_here\right]
\]
If you want to keep it only on one side, use:
\[ % Enter math mode
\left[ your_formula_goes_here\right.
\]
or
\[ % Enter math mode
\left. your_formula_goes_here\right]
\]
depending on the side.
The important part is to always close with \right<**> whatever you opened with \left<*>. Note, as @Werner mentioned, that * and ** could be different as in \(\left] x^{x^{x^x}}\right\}\).
Dror
- 22,613
-
1Note that
\right[is perfectly acceptable as well, as in\left]...\right[, perhaps. :) – Werner Dec 31 '13 at 15:42
[character? And welcome to TeX.SE. – Masroor Dec 31 '13 at 15:34[key on your keyboard. But if you want an expansible bracket to be used within a math expression use\left[ ... \right.(the period is part of the command). – Sigur Dec 31 '13 at 15:36[as-is. If you're using it in an extensible sense (like\left[), then you need a corresponding empty\right.. – Werner Dec 31 '13 at 15:39