\left
and \right
as a pair. What if I want to input a left bracket only what are my choices?Plus also how do you insert a space when there is no current
\begin
s except for \begin{document}
where \\
does not work?\left
and \right
as a pair. What if I want to input a left bracket only what are my choices?\begin
s except for \begin{document}
where \\
does not work?Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\big
, \Big
, bigg
or Bigg
(depending on the size you want). Maybe better: for a left delimiter \bigl
, \Bigl
, biggl
or Biggl
and for a right delimiter \bigr
, \Bigr
, biggr
or Biggr
.\left
/\right
pair there is also the empty delimiter .
:Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
\biggl(\frac{1}{2} \\
x^2
\end{align}
\begin{align}
\left(\frac{1}{2}\right. \\
x^2
\end{align}
\end{document}
Code: Select all
\documentclass{article}
\usepackage{showframe}
\begin{document}
\vspace*{2cm}
\rule{.5\textwidth}{4pt}
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis