Math & ScienceBracket over Array Environment

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
danielwoods911
Posts: 1
Joined: Fri Nov 25, 2011 12:54 am

Bracket over Array Environment

Post by danielwoods911 »

I've seen some solutions on creating an bracket over an array environment, but in fact they do not work well. I have a formula figure like this:

Code: Select all

/begin{figure}
\[
\begin(array}{ll}
\prooftree
   \begin{array}{c}
   ....FORMULA A....
   \end{array}
\justifies
   ...FORMULA B...
\endprooftree
\]
/end{figure}
How can I use \overbracket over the formula:
FORMULA A
FOMURLA B

Recommended reading 2024:

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

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

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Bracket over Array Environment

Post by cgnieder »

You question is rather unclear... this works well:

Code: Select all

\documentclass{article}
\usepackage{mathtools}

\begin{document}

\[
\overbracket{
 \begin{array}{c}
  FORMULA A
 \end{array}
}
\]

\end{document}
site moderator & package author
Post Reply