段落按块缩进,标题位于左侧边距

段落按块缩进,标题位于左侧边距

我对使用 LaTeX 还很陌生,需要按照图片所示构建我的论文大纲。有人能告诉我如何在 LaTeX 中做到这一点吗?任何帮助我都会很感激!

在此处输入图片描述

答案1

\documentclass{article}
\usepackage{enumitem}
\newlength\LW
\settowidth{\LW}{\textbf{Chapter 33}}

\usepackage{lipsum}

\begin{document}
    \begin{description}[labelwidth=\LW,labelsep=1em,
                        leftmargin=\dimexpr\LW+1em]
\item[Chapter 1]    \lipsum[66]
\item[Chapter 22]    \lipsum[77]
    \end{description}
\end{document}
˙``
gives

[![enter image description here][1]][1]


  [1]: https://i.stack.imgur.com/BuQsb.png

相关内容