I am struggling a bit with \underbrace command. I have noticed that if \underbrace is under a long term it gets broken into pieces and the "junctions"(?) are not very smooth.
This problem is not present when I include txfonts package where \underbrace is overridden. However, with txfonts my integral sign become unnaturally curved...
This is merely an aesthetic problem but is there any way to use smooth \underbrace and the standard LaTeX integral sign?
Here's a minimal example. Please remove the txfonts package to see the difference:
Code: Select all
\documentclass{article}
\title{MyTitle}
\date{\today}
%\usepackage{amsfonts}
\usepackage{txfonts}
%\usepackage{wasysym}
%\usepackage{esint}
\begin{document}
\begin{equation}
\int \underbrace{
u \nabla u
}_{\textrm{convection}}
\end{equation}
\end{document}
Robert