[Tex/LaTex] Start inparaenum-numeration with another letter than “a)”

#enumeratecounterslistsnumberingparalist

How can I start \begin{inparaenum} with an arbitrary letter (other than a)) after a break in the inparaenum-environment. I would like to let a new inparaenum-environment be related to the end of the earlier one.

\documentclass[14pt,a4paper,headlines=6,headinclude=true]{scrartcl}

\usepackage{amsmath,amssymb,stmaryrd}       
\usepackage{paralist}                                       
\usepackage{tabto}

\begin{document}

\begin{enumerate}
    \item \textbf{Working with logarithms}: 

    \NumTabs{3}
    \begin{inparaenum}[a)]
    Calculate the following

    \item $\ln 1 = $ 
    \tab \item $\ln e = $ 
    \tab \item $\ln \frac{1}{e} = $
    \end{inparaenum} 

    Express the following in terms of $\ln 2$: 

    \NumTabs{3}
    \begin{inparaenum}[d)]
    \item $\ln 4$ 
    \tab \item $\ln \sqrt[3]{2^5}$ 
    \tab \item $\ln \frac{1}{16} $
    \end{inparaenum} 
\end{enumerate}

\end{document}

Is there a way to let the second row start with d instead of using d in all positions? Thank you very much 🙂

enter image description here

Best Answer

You can set the number by hand; since it's a second level list, you have to set enumii.

\documentclass[14pt,a4paper,headlines=6,headinclude=true]{scrartcl}

\usepackage{amsmath,amssymb,stmaryrd}       
\usepackage{paralist}                                       
\usepackage{tabto}

\begin{document}

\begin{enumerate}
    \item \textbf{Working with logarithms}: 

    \NumTabs{3}
    \begin{inparaenum}[a)]
    Calculate the following

    \item $\ln 1 = $ 
    \tab \item $\ln e = $ 
    \tab \item $\ln \frac{1}{e} = $
    \end{inparaenum} 

    Express the following in terms of $\ln 2$: 

    \NumTabs{3}
    \begin{inparaenum}[a)]\setcounter{enumii}{3}
    \item $\ln 4$ 
    \tab \item $\ln \sqrt[3]{2^5}$ 
    \tab \item $\ln \frac{1}{16} $
    \end{inparaenum} 
\end{enumerate}

\end{document}

enter image description here

You can use, instead, enumitem:

\documentclass[14pt,a4paper,headlines=6,headinclude=true]{scrartcl}

\usepackage{amsmath,amssymb,stmaryrd}
\usepackage[inline]{enumitem}
\usepackage{tabto}

\begin{document}

\begin{enumerate}
\NumTabs{3}
\item \textbf{Working with logarithms}:

Calculate the following\\[\medskipamount]
  \begin{enumerate*}[label=\alph*),itemjoin=\tab,before={}]
  \item $\ln 1 = $ 
  \item $\ln e = $ 
  \item $\ln \frac{1}{e} = $
  \end{enumerate*}

Express the following in terms of $\ln 2$:\\[\medskipamount]
  \begin{enumerate*}[label=\alph*),itemjoin=\tab,resume]
  \item $\ln 4$ 
  \item $\ln \sqrt[3]{2^5}$ 
  \item $\ln \frac{1}{16} $
  \end{enumerate*} 
\end{enumerate}

\end{document}

enter image description here

Related Question