GeneralGet rid of parentheses..

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
assafwe
Posts: 33
Joined: Sun Oct 04, 2009 2:27 pm

Get rid of parentheses..

Post by assafwe »

Hi,

I have an irritating problem with some parentheses showing up in my case environment formula(see attached figure).. I simply can't get rid of it!

Does anybody know what this is??

Thanks,

Asaf
Attachments
parentheses.jpg
parentheses.jpg (15.15 KiB) Viewed 3952 times

Recommended reading 2024:

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

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Get rid of parentheses..

Post by frabjous »

Are you trying to remove he braces { } inside one of the cases, or the parentheses going along with the equation number?

Either way, post the code you're using here, so we can examine it.
assafwe
Posts: 33
Joined: Sun Oct 04, 2009 2:27 pm

Get rid of parentheses..

Post by assafwe »

Hi,

I didn't really get what you were asking..

Here is the code:

Code: Select all

\begin{equation}
S_{\mbox{QC}}(X)=\begin{cases}
(a_{1}(X),b(X)),\  & X<x_{1}\\
{}[0,b(X)),\  & x_{1}<X<x_{0}\\
(0,b(X)),\  & x_{0}<X<x_{2}\\
(a_{2}(X),b(X)),\  & x_{2}<X<x_{3}\\
\tilde{S}(X),\  & X>x_{3},\end{cases}\end{equation}
Im trying to get rid of the "{}" at the beginning of the 4th row.

Thanks,

Asaf
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Get rid of parentheses..

Post by localghost »

Just delete them. Beyond that I see no further difficulties.

Code: Select all

\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}

\begin{document}
  \begin{equation}
    S_{\mbox{QC}}(X)=
    \begin{cases}
      (a_{1}(X),b(X)),\ & X<x_{1}\\
      [0,b(X)),\ & x_{1}<X<x_{0}\\
      (0,b(X)),\ & x_{0}<X<x_{2}\\
      (a_{2}(X),b(X)),\ & x_{2}<X<x_{3}\\
      \tilde{S}(X),\ & X>x_{3},
    \end{cases}
  \end{equation}
\end{document}

Best regards
Thorsten
assafwe
Posts: 33
Joined: Sun Oct 04, 2009 2:27 pm

Re: Get rid of parentheses..

Post by assafwe »

- when I try to delete them through the editor, they come back..
can I delete it from the source code? if so, how do I do this?

tnx,

asaf
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Get rid of parentheses..

Post by frabjous »

What editor are you using?
assafwe
Posts: 33
Joined: Sun Oct 04, 2009 2:27 pm

Re: Get rid of parentheses..

Post by assafwe »

- I'm using LyX..
Post Reply