How do I increase the spacing between the subsection number and header name in the table of contents. I am using www.sharelatex.com.
When I have a large number of subsections the section numbers and headers overlap.
\documentclass[12pt, openany]{book}
% geometry sets paper dimensions
\usepackage[ paperheight=8in,
paperwidth=6in,
top=.1in,
bottom=.2in,
right=.1in,
left=.1in,
heightrounded]{geometry}
% Font Style
\usepackage{bookman}
\begin{document}
\tableofcontents
\setcounter{tocdepth}{3}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\chapter{Test}
\section{Test}
\subsection{Test}
\subsection{Test}
\subsection{Test}
\subsection{Test}
\subsection{Test}
\subsection{Test}
\subsection{Test}
\subsection{Test}
\subsection{Test}
\subsection{Test}
\subsection{Test}
\end{document}
Edit: 12-22-2014 Found an answer to my question at Roman numerals become “too wide” in table of contents
I added these two lines to the preamble.
\usepackage[tocindentauto]{tocstyle}
\usetocstyle{KOMAlike}
