答案1
假设您正在使用标准列表,那么您可以使用它\item []
来放置与项目符号列表对齐的文本:
代码:
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{itemize}
\item First item
\item Second item
\item [] Third item with the list
\end{itemize}%
\begin{itemize}
\item [] Fourth item aligned with other items
\end{itemize}%
\end{document}