Math & Scienceleft bracket only

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
Philosophaie
Posts: 17
Joined: Sat Mar 21, 2015 8:59 pm

left bracket only

Post by Philosophaie »

If you have a table using tabular. You have to use the brackets \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?
Last edited by cgnieder on Wed Sep 02, 2015 8:22 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

left bracket only

Post by cgnieder »

You can either explicitly size the delimiter to the size you want using \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.

For a \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}
As for your question on spaces: I admit I didn't really understand what you mean.

Regards
site moderator & package author
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

left bracket only

Post by Johannes_B »

Code: Select all

\documentclass{article}
\usepackage{showframe}
\begin{document}
\vspace*{2cm}
\rule{.5\textwidth}{4pt}
\end{document}
Never (i.e. never) use a double backslash to create vertical space. Never ever (except you know why you are allowed to do it in a certain case).
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply