I would like the section names in the TOC to be uniformly capatalised, either sentence case or not.
I achieve uniformity in section names now using sectsty and \allsectionsfont{\normalfont\scshape}
Is there anything similar for \tableofcontents?
This is my MWE,
\documentclass[paper=a4, fontsize=11pt]{scrartcl} % A4 paper and 11pt font size
\usepackage{sectsty} % Allows customizing section commands
\allsectionsfont{\normalfont\scshape} % Make all sections centered, the default font and small caps
\begin{document}
\tableofcontents
\section{Properly Formatted Section Name}
\section{Not so properly Formatted Section name}
\end{document}


titlecapspackage to capitalize the first letter of each word. See http://tex.stackexchange.com/questions/45248/headings-in-uppercase/109368#109368 – Steven B. Segletes Apr 07 '15 at 00:48