I imported an .svg image inside my document using the svg package. Since the image is too big, I used \resizebox{}{}{} to scale down both the image and its inside text at once. But I want the image's text to match the document's. So I used \fontsize{}{} to adjust it to match the size. But the problem is, the image's text gets too crammed and unreadable. How can I fix this?
My code:
\begin{figure}[h]
\fontsize{20}{20}\selectfont
\resizebox{6in}{!}{\includesvg{images/ECG-EEG Coherence}}
\end{figure}
Original .svg image:
After compiling it looks like this:

How can I modify my code to get the image look as I wanted?
\includesvg[pretex=\tiny]{svgfilename}seems promising. In any case\fontsize{20}{20}as you have now seems much too big. – Marijn Oct 24 '22 at 13:50