列表无项目符号,标题加粗,除第一行外其余均缩进?

列表无项目符号,标题加粗,除第一行外其余均缩进?

我希望能够有一个没有项目符号的列表,标题加粗,除第一个之外其他部分均缩进。简单来说,类似这样

在此处输入图片描述

截图来自此

答案1

您可以使用description以下列表enumitem可以选择删除snosep之间的垂直空格。\item

\documentclass{article}
\usepackage{enumitem}

\begin{document}

\begin{description}[nosep]
    \item[Increase Recall of Single Tag Queries/Feeds] Many,if not most, queries in tagging systems are for objectslabeled with a particular tag. Similarly, many taggingsystems allow users to monitor a feed of items taggedwith a particular tag.   For example, a user of asocial bookmarking site might set up a feed of all ``photography'' related web pages.  Tag predictioncould serve as a recall enhancing device for suchqueries and feeds.  In Section 4.2, we set up such arecall enhancing tag prediction task.
    \item[Inter-User Agreement] Many users have similar interests, but different vocabularies. Tag prediction wouldease sharing of objects despite vocabulary differences.
    \item[Tag Disambiguation] Many tags are polysemous, that is,they have different meanings.  For example, ``apple'' might mean the fruit, or the computer company. Predicting additional tags (like ``macos'' or ``computer'') might aid in disambiguating what a user meant whenannotating an object. Past work by Aurnhammer et al. [2] looks at similar issues in photo tagging.
\end{description}

\end{document}

截屏

相关内容