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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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: 10335
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