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

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

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