Math & ScienceEqnArray Enviroments next to each other

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
chochmah
Posts: 3
Joined: Mon Sep 21, 2015 1:33 pm

EqnArray Enviroments next to each other

Post by chochmah »

I would like to have it look like this: http://f.666kb.com/i/d6wkwzp502c4uyn84.gif

Q: I would like to place to EqnArrays next to each other in the center of the page is there a canonical way to do this or do I have to fudge around with tables? :)

Thank you very much!


Edit: I think the two Boxes next to each other in a floating table is an ok way. Going to go with that. https://wiki.lyx.org/Examples/FiguresSideBySide

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

EqnArray Enviroments next to each other

Post by kaiserkarl13 »

Try using AMSLaTeX's align environment:

Code: Select all

\documentclass{article}
\usepackage{amsmath}

\begin{document}
Hier kommt nun der erste abgesetzte Formelblock ohne Numerierung, er
erscheint normalerweise zentriert im Text; hier ist er:
\begin{align*}
  x &= a + b & x &= a + b \\
  y &= a - b & x &= a - b \\
  z &= ab    & z &= ab
\end{align*}
und weiter geht's dem normalen Text \dots
\end{document}
Post Reply