LyXRunning Text within enumerated List

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
auvajs
Posts: 22
Joined: Wed Dec 21, 2011 11:21 pm

Running Text within enumerated List

Post by auvajs »

I need to do something like this:
1. enum - blablablablablabla
Standard
Standard
Standard
2. enum - blablablablablabla
Standard
Standard
Standard
3. enum - blablablablablabla
Standard
Standard
Standard
it MUST be within a paragraph (so no way for replacing enum with something else)- and sub-paragraphs instead of enum can't be used too (I am using them in another place of the paragraph).

How to do this??

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

coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Running Text within enumerated List

Post by coachbennett1981 »

I am assuming you can indent.. Try this:

Code: Select all

    \documentclass[11pt,twoside,a4paper]{article}
       \usepackage{amssymb}
   
  \begin{document}  
 
 \begin{enumerate}
 	\item Hello
		\begin{description}
			\item standard
			\item standard 
			\item standard
		\end{description}
	\item Goodbye
		\begin{description}
			\item standard
			\item standard 
			\item standard
		\end{description}
	\item Math Rules
		\begin{description}
			\item standard
			\item standard 
			\item standard
		\end{description}
\end{enumerate}

    \end{document}

auvajs
Posts: 22
Joined: Wed Dec 21, 2011 11:21 pm

Re: Running Text within enumerated List

Post by auvajs »

I understand the LaTeX code but how to do it practically in LyX?
the enumerate list is always (automatically) ended with \end{enumerate} when beginning {itemize}.
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Re: Running Text within enumerated List

Post by coachbennett1981 »

I use TexShop, I am not familiar with how to use WYSIWYG software. There should be a location where you can see the actual code that represents the screen.

Nick
Post Reply