1

This \kern does not move the quotation mark to the left. What am I doing wrong?

\documentclass{memoir}
\begin{document}
\begin{enumerate}
    \item \kern-0.2em``Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'' Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\\
\end{enumerate}
\end{document}

enter image description here

1 Answer 1

3

You are in vertical mode, so the kern moves things up, use \leavevmode\kern.... to get a horizontal kern

3
  • 1
    \hspace{-0.2em} also works.
    – jlab
    Commented Apr 15 at 13:45
  • 1
    @jlab yes but doesn't explain "what am I doing wrong" with the kern Commented Apr 15 at 13:50
  • 1
    You right. I just wanted to suggest an alternative.
    – jlab
    Commented Apr 15 at 13:55

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .