In the figure form, how to adjust the whole size of "text" and "math" format "as a combined figure" at once?
If this is a usual pdf figure, we can do \includegraphics[width=4.4in], such as below, the size is tuned by [width=4.4in]
\begin{figure}[htbp]
\centering
\includegraphics[width=4.4in]{.pdf}
\caption{}\label{}
\end{figure}
Can we adjust the whole overall size of the figure (including the "text" and "math" format) at once by the similar function, like "size"?
I hope to have a 3-times-larger figure overall.
\documentclass{article}
\usepackage{mathtools,amssymb}
\begin{document}
\begin{figure}[!h]
\begin{center}
\begin{gather*}
\overbrace{\underbrace{A \times B}_E\times
\underbrace{C\times {D}}_{EFG}}^{\text{ABCDEFG}} \\[-\normalbaselineskip]
\underbrace{\kern5em}_{\text{family}}
\end{gather*}
\end{center}
\caption{}
\end{figure}
\end{document}



gather*then it can be done in an easier way:\scalebox{3}{$\displaystyle\overbrace{\underbrace{A \times B}_E\times ...$}– Dec 28 '18 at 20:56This looks not compilable simply from "\usepackage{mathtools,amssymb,varwidth} \usepackage{showframe}"
– wonderich Dec 28 '18 at 21:09graphicxis needed, but it is loaded already bymathtools. At least in my TeX distribution. – Dec 28 '18 at 21:13fleqnit puts the equation left aligned but with an indentation ofmathindentfrom the left margin. This is the reason why it must be set to 0 pt – Dec 29 '18 at 07:53