Math & Scienceunclosed equation boundaries

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
bumeshrai
Posts: 4
Joined: Thu Jun 03, 2010 4:42 pm

unclosed equation boundaries

Post by bumeshrai »

How can I write unclosed equation boundaries in tex without getting errors. More simply how do I write \left( without using a corresponding \right) and vice-versa.

Recommended reading 2024:

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

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

unclosed equation boundaries

Post by gmedina »

Hi,

without using extra packages you must balance every \left construct with its corresponding \right command (and viceversa) before changing lines. You can use a void delimiter (represented with a dot); for example,

Code: Select all

\left(   \right.
or

Code: Select all

\left. \right)
The breqn package allows \left \right constructs even if a break line occurs in the middle.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

unclosed equation boundaries

Post by localghost »

You can also try commands for manual adjustment of scalable delimiters which don't need to appear in pairs.

Code: Select all

\big
\Big
\bigg
\Bigg
Furthermore the invisible delimiters introduced by gmedina produce additional horizontal space (caused by the \nulldelimiterspace register). More information about that can be found in the »Math mode« document.


Best regards and welcome to the board
Thorsten
bumeshrai
Posts: 4
Joined: Thu Jun 03, 2010 4:42 pm

Re: unclosed equation boundaries

Post by bumeshrai »

Silly me, don't forget the 'Bigg' fella!!

Thanx
Post Reply