First Problem:
For my report I wanted to have down to the 7 levels of sectioning, so I could have:
1.1.1.1.1
For this I used these two commands:
\setcounter{secnumdepth}{7}
\setcounter{tocdepth}{7}
Which work fairly well except for when I come to write in the paragraph section
it behaves like a normal paragraph, where I really want it to be like a section (or subsection etc).
No matter what I do I can't get it to move to the next line properly as
Code: Select all
\paragraph{Some Title} \newline
Some text
So just to workaround it currently I have:
Code: Select all
\paragraph{Some Title} \paragraph*{}
Some text
Second Problem:
Headings not displayed correctly after List of Tables, ie on the next page I have a section called acronyms which I don't want numbered, so I use \section*{}, but I would like the Heading changed to Acronym. Is their a command to overright the default Heading so it will also look for the \section*{}?
Any suggestions? BTW have a look at the TeX file I included to see the problems I'm talking about if I didn't explain them well enough!
Many Thanks.