Is it possible to start your text right after the section in the res class? As an alternative, one could also fake a section title's look (font) etc. However, how would you fully indent it to the left then (in res class the titles are further on the left than the text)?
Thanks!
This question has been answered already here. However, not for the res document class.
\documentclass{res}
\begin{document}
\begin{resume}
%Section
\section{TEST:} test
%Alternative
\vspace{\parskip}
\large{TEST:} test
\end{resume}
\end{document}
Thanks @ Werner for the first solution: Do you also have tip for making it work with \newsectionwidth{10pt}? The given solution breaks down when you introduce the new section width.
\documentclass{res}
\newsectionwidth{10pt} %So the text is not indented too much under section headings
\begin{document}
\begin{resume}
%Section
\section{TEST:} test
\bigskip
\renewcommand{\section}[1]{\leavevmode{\llap{\sectionfont #1\ }}\ignorespaces}
%Section
\section{TEST:} test
\end{resume}
\end{document}

\sectionto insert whatever space you want. For example, try\renewcommand{\section}[1]{\leavevmode\hspace*{\sectionwidth}\llap{\sectionfont #1\ }\ignorespaces}or something more rigid like50ptinstead of\sectionwidth. – Werner Oct 25 '14 at 08:16