I'm using the following command to set my sections to use roman numerals, and I can set subsections to roman or arabic just fine, but I'd like to remove numerals from subsections altogether. I tried using {} but it leaves a . in front of the subsection.
\renewcommand\thesection{\Roman{section}}
\renewcommand\thesubsection{}
It feels like I need something like this, but I can't find a reference as such.
\renewcommand\thesubsection{empty{subsection}}

\setcounter{secnumdepth}{1}to your preamble. This will number only up to sectional unit/level 1 =\section. Level 2 (\subsection) and lower won't be numbered. – Werner Feb 18 '17 at 01:28\subsection*{...}instead of\subsection{...}? – CarLaTeX Feb 18 '17 at 01:37