LyXSublist on list

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
User avatar
anta40
Posts: 38
Joined: Thu Sep 11, 2008 2:36 pm

Sublist on list

Post by anta40 »

I'm writing a numbered list.
The first item has a sublist.
When the sublist is done, the ordering starts from 1 again.

Image

How to make the numberings go 1,2,3,4... and so on, not 1,1,2,3...?

Recommended reading 2024:

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

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

curiouslearn
Posts: 105
Joined: Fri Nov 30, 2007 11:32 pm

Re: Sublist on list

Post by curiouslearn »

Look at package enumitem. That may solve your problem. On the other hand, you may not need it. Depends on what exactly you are trying to do. Post a minimal working example and you will get better help.
User avatar
anta40
Posts: 38
Joined: Thu Sep 11, 2008 2:36 pm

Re: Sublist on list

Post by anta40 »

OK, I'll give enumitem a look.
Guess Lyx is not really WYSWYIG, he he
phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

Sublist on list

Post by phi »

Probably you don't use a nested itemize environment. The LaTeX code should look like this:

Code: Select all

\documentclass{article}
\begin{document}
\begin{enumerate}
    \item Blah blah:
    \begin{itemize}
        \item aaaa
        \item bbbb
    \end{itemize}
    \item Foo bar
    \item Woohoo!
\end{enumerate}
\end{document}
monamipierrot
Posts: 31
Joined: Sun Aug 10, 2008 12:01 pm

Sublist on list

Post by monamipierrot »

curiouslearn wrote:Look at package enumitem. That may solve your problem. On the other hand, you may not need it. Depends on what exactly you are trying to do. Post a minimal working example and you will get better help.
Next with "increase depth" button. Then you can also change default or user-default (see document settings) sub-enumerate to standard text, bullets or any kind of list. Don't know how to achieve normal left-alligned text.
H.
  • Windows XP professional sp3
    LyX 1.6.1
My current docs defaults:
Koma-script Book with package biblatex; LilyPond for music examples
Post Reply