I am quite new in using LaTeX and need to structure my paper outline as depicted in the image. Would anybody be able to tell me how this is could be done in LaTeX? I'd appreciate any help!
Asked
Active
Viewed 225 times
1
1 Answers
0
\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
Zarko
- 296,517

descriptionlist. With use ofenumitempackage you can simply define desired layout. – Zarko Feb 08 '20 at 07:52