I have some trouble using the titletoc package to edit a simple ToC composed only of several sections. I would just like to turn their font from bold (which is the default font) to roman, but I am definitely making some mistake with the \titlecontents command. Here is an example:
\documentclass[12pt,a4paper]{article}
\usepackage[margin=3cm]{geometry}
\usepackage[authordate,backend=biber]{biblatex-chicago}
\bibliography{bibliography}
\usepackage[tiny]{titlesec}
\usepackage{titletoc}
% \titlecontents ???
\begin{document}
\tableofcontents
\section[Reference A]{\fullcite{bibtexkey A}}
\section[Reference B]{\fullcite{bibtexkey B}}
\section[Reference C]{\fullcite{bibtexkey C}}
\end{document}
