General ⇒ Enumerate Item on same line
Enumerate Item on same line
First let me thanks all the forum member who always are very helpful in solving my queries.
Thank you to all of them.
I want enumerate itme to appear next to next, something similary to the below eg.
1) we have the following equations.
i) equation one ii) equation two iii) equation three.
2) Every set has many solution, some of them are
i) solution one ii) solution two iii) solutio three
...
...
In exam though there is an option for multile choice question which can give me similary output, however here is it feasible to use that. (I'm writing an article). which need something like above.
Please guide,
and yes, thanks, thanks a lot for your support.
Arif.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Enumerate Item on same line
you could use the inparaenum environment provided by the paralist package. Take a look at the following example:
Code: Select all
\documentclass{article}
\usepackage{paralist}
\begin{document}
\begin{enumerate}
\item First item.
\begin{inparaenum}[i)]
\item Subitem one one.
\item Subitem one two.
\item Subitem one three.
\end{inparaenum}
\item Second item.
\begin{inparaenum}[i)]
\item Subitem two one.
\item Subitem two two.
\item Subitem two three.
\end{inparaenum}
\end{enumerate}
\end{document}
Re: Enumerate Item on same line
Thanks a lot.
Arif