在 Overleaf Latex 中没有表格栏的表格类条目

在 Overleaf Latex 中没有表格栏的表格类条目

我是 latex overleaf 的新手,我想要类似下面的内容



topic       Main topic and content of the paper

relevance   Explanation of why and how the paper is relevant to
            the topic
role        Role which the publication will play in the seminar
            work

一个例子是

在此处输入图片描述

任何帮助都将不胜感激,非常感谢!

答案1

description以下是在环境(未编号)的帮助下得到的解决方案enumitem

\documentclass{book}
\usepackage{enumitem}
\usepackage{calc} 
\usepackage{lipsum} 

\begin{document}

\begin{description}[labelwidth=\widthof{\bfseries relevance}, leftmargin=!]
  \item[topic] \lipsum[11]
  \item[relevance] \lipsum[12]
  \item[role]\lipsum[13]

\end{description}

\end{document} 

在此处输入图片描述

相关内容