7

Let us consider The following example

\documentclass{article}
\usepackage{enumerate}
\begin{document}
\begin{enumerate}
 \item Which of the following numbers is the largest ?\\
$2^{3^4},2^{4^3},3^{2^4},3^{4^2},4^{2^3},4^{3^2}.$

\begin{enumerate}[(a)]
\item  $2^{3^4}$
\item  $3^{4^2}$
\item  $4^{3^2}$ 
\item $4^{2^3}$
\end{enumerate}

\end{enumerate}
\end{document}

This produces :

enter image description here

But I'd like to produce the following using the same package :
enter image description here

OR
enter image description here

OR
enter image description here

How can I do that?

Moriambar
  • 11,466
Soumitra Sen
  • 2,995

2 Answers2

5

You can use the multicol package:

\documentclass{article}
\usepackage{enumerate}
\usepackage{multicol}
\begin{document}
\begin{enumerate}
 \item Which of the following numbers is the largest?\\
$2^{3^4}$, $2^{4^3}$, $3^{2^4}$, $3^{4^2}$, $4^{2^3}$, $4^{3^2}$.

\begin{enumerate}[(a)]
\begin{multicols}{2}
\item  $2^{3^4}$
\item  $3^{4^2}$
\item  $4^{3^2}$ 
\item $4^{2^3}$
\end{multicols}
\end{enumerate}

\end{enumerate}
\end{document}

enter image description here

Here's another option, using this time the enumitem package and its inline option:

\documentclass{article}
\usepackage[inline]{enumitem}
\begin{document}
\begin{enumerate}
\item Which of the following numbers is the largest?\\
$2^{3^4}$, $2^{4^3}$, $3^{2^4}$, $3^{4^2}$, $4^{2^3}$, $4^{3^2}$.

\begin{enumerate*}[label=(\alph*),itemjoin={\hspace{\fill}}]
\item  $2^{3^4}$
\item  $3^{4^2}$
\item  $4^{3^2}$
\item $4^{2^3}$
\end{enumerate*}

\end{enumerate}
\end{document}

enter image description here

Moriambar
  • 11,466
Gonzalo Medina
  • 505,128
  • sorry,the last answer shows 4 errors one is given here :Environment enumerate* undefined.\begin{enumerate*}. I don't know what is this. – Soumitra Sen Apr 05 '13 at 03:26
  • 3
    @SoumitraSen This error indicates that you are using an outdated version of the enumitem package. Please update the package (or, even better, your LaTeX system). My second solution works with version 3.5.2 of the enumitem package. – Gonzalo Medina Apr 05 '13 at 03:30
  • @GonzaloMedina I want to use the second answer but I do not want them all in one line. For example, I want (a) and (b) in one line then below them (c) and (d)? – Tarek Acila Dec 17 '20 at 09:32
1

This looks like an ideal task for tasks (here in combination with exsheets which as of May 2017 is superseded by xsim):

enter image description here

\documentclass{article}
\usepackage{exsheets}
% this sets up the question headings to be a simple run-in number:
\SetupExSheets{
  headings = runin-nr ,
  headings-format = \normalfont
}

\usepackage{tasks}
% this creates a new environment `choices' where the single
% choices are indicated with \choice and are labelled (a), (b), ...:
\NewTasks[counter-format=(tsk[a]),label-width=2em]{choices}[\choice]

\begin{document}
\begin{question}
  Which of the following numbers is the largest?\\
  $2^{3^4}$, $2^{4^3}$, $3^{2^4}$, $3^{4^2}$, $4^{2^3}$, $4^{3^2}$.
  \begin{choices}
    \choice $2^{3^4}$
    \choice $3^{4^2}$
    \choice $4^{3^2}$ 
    \choice $4^{2^3}$
  \end{choices}
\end{question}

\begin{question}
  Which of the following numbers is the largest?\\
  $2^{3^4}$, $2^{4^3}$, $3^{2^4}$, $3^{4^2}$, $4^{2^3}$, $4^{3^2}$.
  % the optional argument in parentheses determines the number of columns:
  \begin{choices}(2)
    \choice $2^{3^4}$
    \choice $3^{4^2}$
    \choice $4^{3^2}$ 
    \choice $4^{2^3}$
  \end{choices}
\end{question}

\begin{question}
  Which of the following numbers is the largest?\\
  $2^{3^4}$, $2^{4^3}$, $3^{2^4}$, $3^{4^2}$, $4^{2^3}$, $4^{3^2}$.
  \begin{choices}(4)
    \choice $2^{3^4}$
    \choice $3^{4^2}$
    \choice $4^{3^2}$ 
    \choice $4^{2^3}$
  \end{choices}
\end{question}

\end{document}
cgnieder
  • 66,645
  • sorry, your answe shows the error : File 'exsheets.sty' not found.\SetupExsheets.Please, explain what is this. – Soumitra Sen Apr 05 '13 at 07:44
  • 4
    @SoumitraSen this means that your TeX distribution is to old and has èxsheets`not yet installed. You'd need to update your distribution – cgnieder Apr 05 '13 at 07:53