I have 1 final problem with my thesis. I am not getting indents for my subsections and subsubsections. All is fine with sections.
Here is a snippet of my code that displays the problem.
Code: Select all
\documentclass[10pt]{article}
\setlength{\parindent}{1pc}
\begin{document}
\renewcommand{\thesection}{\Roman{section}}
\renewcommand{\thesubsection}{\Alph{subsection}}
\renewcommand{\thesubsubsection}{\arabic{subsubsection}}
\begin{center}
\section{Background}
\end{center}
This text is fine.\\
\noindent\textit{Just a Seperate Heading (not sectioned)}\\
Also, this text is fine.\\
\subsection{This is a Subsection}
This is the text that I need indented
\subsubsection{This is a sub subsection}
I also need this text indented
\end{document}
As always, all help is greatly appreciated
Cheers
Ivan