答案1
如果你想要定制自动枚举列表,下面介绍如何使用 轻松完成此操作enumitem
,它使用 系统来key=...
控制列表的参数:
\documentclass{article}
\usepackage{enumitem}
\usepackage{lipsum}
\begin{document}
\lipsum[11]
\begin{enumerate}[label=RQ\arabic*, font=\bfseries, wide=0pt, leftmargin=1.8em ]
\item Some text. Some text. Some text. Some text. Some text. Some text. Some text. Some text.
\item Another text. Another text. Another text. Another text. Another text. Another text. Another text. Another text.
\end{enumerate}
\end{document}
答案2
正如 @TeXnician 指出的那样,解决这个问题的方法是description
:
\documentclass{article}
\begin{document}
\begin{description}
\item[foo]
bar
\item[baz]
bang
\end{description}
\end{document}
感谢您提供的帮助!