I want to create a manual symbol index. I dont want a number for the symbol index using \section*{}. But I want the symbol index to appear in the table of contents (toc) without a number number.
\documentclass[12pt,a4paper]{scrartcl}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{lmodern}
\begin{document}
\tableofcontents
\section{First section with numbering}
\section*{Symbol index}
\end{document}
scrartclyou can use\addsecinstead\section*to get an unnumbered section with TOC entry. – esdd Jul 19 '16 at 12:52