Firstly, I have an enumerated list with several enumerated lists nested within. I want my first level to remain as standard (i.e. just the number). I want my second level to be the number of the first level '.' number for the second level and so on. I want the third level to be number of first level '.' number of second level '.' number of third level. Basically, I want the three levels to be numbered like sections, subsections and subsubsections. I've tried to apply the principals this post but I can't get it to work
This is probably completely wrong but I'm a LaTeX n00b so please forgive me.
In my preamble, I have:
Code: Select all
\makeatletter
\renewcommand{\p@enumii}{\theenumi.}
\renewcommand{\theenumii}{\arabic{enumii}}
\renewcommand{\p@enumiii}{\theenumii.}
\renewcommand{\theenumiii}{\arabic{enumiii}}
\makeatother
Code: Select all
1. Item one
(1) Sub item one
1. Sub sub item one
(2) Sub item two
2. Item two
What am I doing wrong?
The second question... I want a bibliography style reference at the end of my document that allows me to cite the source for all my images. For example, after my bibliography pages, I want another page that looks something like:
[Figure 1] Taken with permission from http://www.url.com/
[Figure 2] Image licensed under the Creative Commons License
[Figure 3] ...
etc
How can I do this?