1

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!

enter image description here

Richard
  • 13
  • 1
    Welcome to tex.sx. It would be very helpful to know what document class you intend to use -- the answer could be different depending on that choice. This recent question has answers that follow the format you show; perhaps it can help. – barbara beeton Feb 08 '20 at 01:22
  • 1
    This remind me on description list. With use of enumitem package you can simply define desired layout. – Zarko Feb 08 '20 at 07:52
  • @barbarabeeton thank you for linking the answer! That is precisely what I intend to do. And Zarko thank you for your reply as well! – Richard Feb 08 '20 at 09:49

1 Answers1

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