Math & Sciencealigns between several multlined environment

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
techas
Posts: 1
Joined: Mon Jul 25, 2016 10:41 am

aligns between several multlined environment

Post by techas »

Hi all,
I am writing something for journal that requires two column page... space for equations is really small and some of my equation are fairly large.

My original file was like this (equations simplified here):

Code: Select all

\begin{subequations}\label{eq:mu-problem}
  \begin{align}[left = {\empheqlbrace\,}]
  A &= B & & \forall x \in \Omega, \\ 
  C &= D & & \forall y \in \Gamma,  
  \end{align}
\end{subequations}
After using the class of the journal, equations do not fit so I added some multlined environment:

Code: Select all

\begin{subequations}\label{eq:mu-problem}
  \begin{align}[left = {\empheqlbrace\,}]
    &\begin{multlined}
    A \\ 
    = B  \forall x \in \Omega, 
   \end{multlined} \\
  &\begin{multlined}
    C \\
    = D  \forall y \in \Gamma,  
   \end{multlined}
  \end{align}
\end{subequations}
Now, I would like to align the two \forall... any idea?

Thanks in advance,
Sergio

Recommended reading 2024:

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

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

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: aligns between several multlined environment

Post by Johannes_B »

No idea. You are showing non-standard comands, you are mention a journal class, but not which (link) you do not give a real usecase.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10359
Joined: Mon Mar 10, 2008 9:44 pm

Re: aligns between several multlined environment

Post by Stefan Kottwitz »

Hi Sergio,

welcome to the forum!

Can you show us code that we can test? As we would not sit on your computer? It seems that the issue information is not sufficient to fix it.

Stefan
LaTeX.org admin
Post Reply