I am very new to Tex, I am working of a template that someone else has given me.
I am try to change the /part{Part I: my stuff} from looking like this in the TOC
1 Introduction
I Part I: my stuff
2 Procedure blah blah
3 Procedure blah blah
II Part II: my stuff
4 Procedure blah blah
to something like:
1 Introduction
Part I: my stuff
2 Procedure blah blah
3 Procedure blah blah
Part II: my stuff
4 Procedure blah blah
Currently I have this
%% ---------------------------------------------------------------------- %%
\mainmatter
% Main matter
% -> Global Introduction
\input{Chapters/Introduction.tex}
%% ***** PART 1 *****
\part*{<Insert Title of First Part>}
\input{Chapters/SummaryPartA.tex}
%% ***** PART 2 *****
\part*{<Insert Title of second Part>}
\input{Chapters/SummaryPartB.tex}
Thank you for your help

book.cls. Does it solve your problem? If not you will need to provide a link to your custom class. – Andrew Swann Jan 03 '14 at 13:59