I would like to turn off bold for section-level headers in LaTeX, but keep bold for subsection-level headers. Would this be possible? The document class I'm using is article. Thanks!
A MWE would be:
\documentclass{article}
\begin{document}
\section{This should not appear bold.}
\subsection{This should appear bold.}
\end{document}
EDIT: Would it maybe even be possible to do this only for one section, so:
\documentclass{article}
\begin{document}
\section{This should not appear bold.}
\subsection{This should appear bold.}
\section{This should appear bold again.}
\end{document}

\captionhas nothing to do with\subsection. Please provide an MWE (from\documentclass...to\end{document}) showing what you have tried and what your problem is. – Peter Wilson Nov 28 '21 at 19:40