Please consider the following codes:
\documentclass{report}
\begin{document}
\tableofcontents
\chapter{TEST}
\section{Introduction}
\subsection{Test subsection}
\end{document}
I want to appear statements "1-1-" and "1-1-1-" instead of "1.1" and "1.1.1" in the list of contents. Can you help?
\renewcommand{\thesection}{\thechapter-\arabic{section}}– Oct 22 '17 at 14:48