Make specific subitems in Latex

I want to make an own enumeration with more deepness. Not only one subitem, maybe some more. The problem is, how can I manage it and which justifications have to be done in my latex files?
1 answer

How to make an specific enumeration

first you need an renew command in the config file like that:
\renewcommand{\labelenumii}{\theenumi.\arabic{enumi}.}
\renewcommand{\labelenumii}{\theenumi.\arabic{enumii}.}

after that you can use it in the actual latex files.

to use it in the latex file you have to put this in it:
\begin{enumerate}
\item Test
\item Test
\begin{enumerate}
\item Test
\item Test
\end{enumerate}
\item Test
\end{enumerate}

It will look like that:
1. Test
2. Test
2.1 Test
2.2 Test
4. Test

If you want to have more steps deeper you can add more \begin{enumerate} and \end{enumerate} in the listing.

If you want to have other symbols instead of numbers you have to define it in the config file and then you can use it also in the normal latex files.

Taggings: