I use TeXShop on Mac. After updating to the newest version (I've been negligent for a bit) I've been having difficulty with \vspace and \normalfont. In particular, \normalfont does nothing after using \large, and \vspace only skips after the next \\ command, so I've been needing to use \vspace{} \text{}\\ to get it to work. I've posted below what I have as a minimal working example. I'm not sure if I have an error here (any help appreciated) or if these changed with the update. In either case, any help/suggestions/advice for how to better use \vspace and \normalfont would be appreciated.
\usepackage[paperwidth=8.5in,paperheight=11in,margin=.75in,headheight=0.27in,headsep=.1in]{geometry}
\begin{document}
\noindent \large \textbf{The Tangent Problem}\
\normalfont
\vspace{3cm}\
test1
\vspace{4cm}
test2
3
4\
5\
6\
\end{document}

\normalsizeto get the normal font size, and use \vspace only between paragraphs (after an empty line), inside paragraphs use\\[3cm]. – Ulrike Fischer Jul 13 '22 at 16:16\normalsize. I'm still having the same issue with\vspace, I can only get a vertical space after using the\\command later on elsewhere, even after an empty line (like the line above4\\), which requires something like\vspace{stuff} \text{} \\\for me. The command\\\[3cm]helps, but I still can't get\vspaceto work out. – PQ- Jul 13 '22 at 16:49\normalfontselects the document default font but that is the current font so it does nothig. avoid using\\ad\vspace, certaily don't use them at the same place, as here. – David Carlisle Jul 13 '22 at 20:41\normalsizenot\normalfont, silly mistake. I've tried to avoid using\\and use only line breaks and\vspace, but I found that the compiler (or whatever it is) seems to be ignoring\vspaceunless I also use\\– PQ- Jul 13 '22 at 21:15