- #1
member 428835
Hi PF!
I have the following code
in LateX but for some reason when I scale the pictures, the font is also scaled. How can I control this so the font is the same size as the rest of the document?
Thanks so much!
Josh
I have the following code
Code:
\begin{figure}
\isp
\begin{subfigure}[t]{0.5\textwidth}
\centering
\resizebox{\linewidth}{!}{
\begin{tikzpicture}
\draw(0,0) to (0,1);
\node at (0,1) {$z$};
\end{tikzpicture}
}
\caption{}
\label{tri}
\end{subfigure}
\begin{subfigure}[t]{0.5\textwidth}
\centering
\resizebox{\linewidth}{!}{
\begin{tikzpicture}
\draw(0,0) to (1,0);
\node at (1,0) {$x$};
\end{tikzpicture}
}
\caption{}
\label{round}
\end{subfigure}
\caption{Illustration of the tapered corner regime.}
\label{tc}
\end{figure}
in LateX but for some reason when I scale the pictures, the font is also scaled. How can I control this so the font is the same size as the rest of the document?
Thanks so much!
Josh