答案1
有多种方法可以实现均匀的线条。问题是您想如何格式化标签?
\documentclass{article}
\begin{document}
\begin{enumerate}
\item This item takes up two lines and the second line has an extra indent which I would like to remove, is there any way I can do that ?
\end{enumerate}
\begin{itemize}
\item[{\makebox[\labelwidth][l]{1.}}] This item takes up two lines and the second line has an extra indent which I would like to remove, is there any way I can do that ?
\end{itemize}
\begin{description}
\item[{\makebox[\dimexpr \leftmargini-\labelsep][l]{1.}}] This item takes up two lines and the second line has an extra indent which I would like to remove, is there any way I can do that ?
\end{description}
\end{document}