Open margarineHound opened 5 years ago
I want the bullet points for each position to line up with the position title and employer. I have modified the \tightitemize command as follows:
\newenvironment{tightitemize} % Defines the tightitemize environment which modifies the itemize environment to be more compact {\vspace{-\topsep}\begin{itemize} \leftmargin-25pt \itemsep0pt \parskip0pt \parsep0pt \itemindent-20pt \labelsep1pt \parindent0pt } {\end{itemize}\vspace{-\topsep}}
However, it seems that this is causing a hanging indent: ie. I want the second line of each bullet point to line up vertically with the first word in the first line, if not the bullet.
I have tried playing around with the values, and parameters, to no avail. I would appreciate any and all help. Thank you in advance.
Instead of \itemindent-20pt use \leftmargini command
for more check this https://tex.stackexchange.com/questions/480957/move-item-right-or-left
I want the bullet points for each position to line up with the position title and employer. I have modified the \tightitemize command as follows:
\newenvironment{tightitemize} % Defines the tightitemize environment which modifies the itemize environment to be more compact {\vspace{-\topsep}\begin{itemize} \leftmargin-25pt \itemsep0pt \parskip0pt \parsep0pt \itemindent-20pt \labelsep1pt \parindent0pt } {\end{itemize}\vspace{-\topsep}}
However, it seems that this is causing a hanging indent: ie. I want the second line of each bullet point to line up vertically with the first word in the first line, if not the bullet.
I have tried playing around with the values, and parameters, to no avail. I would appreciate any and all help. Thank you in advance.