Math & Science ⇒ underbrace
underbrace
\underbrace{not wide}_{very wide}
The result is that the equation is sort of streched with some spaces between the synbols, which I want to get rid of. It does not work to do linebreak tough it conserns a matrix, that is too wide.
\ Peder
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
underbrace
Code: Select all
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
a+ \underbrace{bcd}_{\mathclap{somethinglong}} + e
\]
\end{document}
Re: underbrace

\Peder