
Text Formatting ⇒ Integrals in arrays
Integrals in arrays
If I am making an array in LaTeX, and I want to put integrals as entries in the array, the output I get is the inline math height integrals. What code do I need to add so that the integrals come out full displaymath height? Thanks!! 

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

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Integrals in arrays
Hi,
you could use the command \displaystyle before the integral.
Stefan
you could use the command \displaystyle before the integral.
Stefan
LaTeX.org admin
Integrals in arrays
I've tried that, but unfortunately TexMaker gives me a "Bad math environment delimiter." error D:Stefan_K wrote:Hi,
you could use the command \displaystyle before the integral.
Stefan
- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
Integrals in arrays
So you are using a wrong math delimiter. Simply show your code if we should tell you what's wrong there. This example works fine:
Stefan
Code: Select all
\documentclass{article}
\begin{document}
\[
\begin{array}{l}
\displaystyle\int_0^\infty
\end{array}
\]
\end{document}
LaTeX.org admin