如何在乳胶中创建带有粗体标题的列表

如何在乳胶中创建带有粗体标题的列表

我提供了我正在寻找的经过修改的图像(没有权限分享我从中截取片段的论文内容),我在谷歌上做了一些研究,但似乎找不到我想要的东西。

enter image description here

任何帮助是极大的赞赏。

答案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} 

enter image description here

答案2

正如 @TeXnician 指出的那样,解决这个问题的方法是description

\documentclass{article}
\begin{document}
\begin{description}

\item[foo]
bar

\item[baz]

bang

\end{description}
\end{document}

感谢您提供的帮助!

相关内容