I would like to make a custom indenting for lists:
- Bullet or number is indented 1.2 cm from the left margin
- Text (all lines) is indented 1.8 cm from the left margin
I am trying to use the enumitem package. It is easy to indent text with leftmargin option, but I can not succeed with bullet/number indenting. I have tried different values for itemindent, labelindent, labelwidth and labelsep but have not achieved the result I am looking for.
Here is MWE.
\documentclass{article}
\usepackage{enumitem}
\setlist{noitemsep, topsep=0pt, parsep=0pt, partopsep=0pt, leftmargin=1.8cm}
\begin{document}
\noindent Here is some text.
\begin{itemize}
\item \( y_i = 1 \) if individual \( i \) is employed is employed is employed is employed is employed is employed is employed is employed is employed is employed,
\item \( y_i = 2 \) if individual \( i \) is unemployed is unemployed is unemployed is unemployed is unemployed is unemployed is unemployed is unemployed,
\item \( y_i = 3 \) if individual \( i \) is inactive is inactive is inactive is inactive is inactive is inactive is inactive is inactive is inactive.
\end{itemize}
\noindent \rule{1.2cm}{1pt}$\bullet$ \par
\noindent \rule{1.8cm}{1pt} \par
\begin{enumerate}
\item \( y_i = 1 \) if individual \( i \) is employed is employed is employed is employed is employed is employed is employed is employed is employed is employed,
\item \( y_i = 2 \) if individual \( i \) is unemployed is unemployed is unemployed is unemployed is unemployed is unemployed is unemployed is unemployed,
\item \( y_i = 3 \) if individual \( i \) is inactive is inactive is inactive is inactive is inactive is inactive is inactive is inactive is inactive.
\end{enumerate}
\noindent \rule{1.2cm}{1pt}3 \par
\noindent \rule{1.8cm}{1pt} \par
\noindent Here is some text.
\end{document}

