Search found 2 matches

by CiC Limits
Mon Oct 14, 2013 12:53 am
Forum: Page Layout
Topic: Centered Headings for ToC, LoF and LoT
Replies: 2
Views: 10570

Centered Headings for ToC, LoF and LoT

I have found my solution (for possible future reference), although still open to opinions. Not entirely sure of what \makeatletter and \makeatother do, but it works for me.

\newpage
\makeatletter
\chapter*{\Large\bfseries\centering TABLE OF CONTENTS}
\phantomsection
\@starttoc{toc}
\makeatother ...
by CiC Limits
Sun Oct 13, 2013 11:25 pm
Forum: Page Layout
Topic: Centered Headings for ToC, LoF and LoT
Replies: 2
Views: 10570

Centered Headings for ToC, LoF and LoT

I am trying to center and rename the title of my table of contents.

This is what I currently have.
\chapter*{\Large\bfseries\centering ACKNOWLEDGMENTS}
\phantomsection

\newpage
\renewcommand\contentsname{\centering\Large TABLE OF CONTENTS}
\tableofcontents

I have successfully changed the size ...