Page LayoutParagraph numbering

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Paragraph numbering

Post by gmedina »

You can use the align=left option, as the following example suggests:

Code: Select all

\documentclass[12pt,a4paper]{article}
\usepackage{enumitem}

\begin{document}

\begin{enumerate}[labelindent=\parindent,leftmargin=*,itemindent=\parindent,fullwidth]
  \item aasasasasasasasasa
  \begin{enumerate}[label=(\alph*),leftmargin=*,labelwidth=17pt,itemindent=18pt]
    \item Device Driver on the host.
    \item Calibration, Applications and Monitoring tools are provided ankush ankush ankush. 
    \item Baseband software contains:-
    \begin{enumerate}[label=(\roman*),listparindent=5pt,itemindent=20pt,align=left]
      \item Scheduler.
      \item Medium Access Controller and Physical, Radio Frequency Driver and Host Interface.
    \end{enumerate}
  \end{enumerate}
\end{enumerate}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

ankscorek
Posts: 7
Joined: Sat May 15, 2010 9:18 am

Paragraph numbering

Post by ankscorek »

thanks this is working out like this

Code: Select all

1.  xxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxx

    (a)   xxxxxxxxxxxx
     xxxxxxxxxxxxxxxxx.
          (i)  xxxxxxx
           xxxxxxxxxxxx.

this is perfect till here what if i want to do this:-

1.  xxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxx

    (a)   xxxxxxxxxxxx
     xxxxxxxxxxxxxxxxx.
          (i)  xxxxxxx
           xxxxxxxxxxxx.
               (aa) xx
                xxxxxx.

               (ab) xx
                xxxxxxx.
IN other words a sub sub paragraph with alignment as shown from sub sub para (aa) to (ab)
Post Reply