枚举时第二行缩进存在问题。

枚举时第二行缩进存在问题。

我对以下情况感到困扰。

在此处输入图片描述

然而,这就是我实际得到的。 在此处输入图片描述

这是我的代码:

\documentclass[12pt,a4paper]{article}
\usepackage{times}
\usepackage[inline, shortlabels]{enumitem}
\begin{document}
\begin{enumerate}
    \item \begin{enumerate*}[leftmargin=*,labelindent=16pt, series = tobecont, itemjoin = \\, labelindent=20pt]
    \item What is the flow rate  in terms of the velocity and area at state 2?
    \item What does the energy equation reduce to in terms of the velocity, area, and elevation at state 2?
    \item What is the value of the elevation $z_{2}$?
    \item What is the area of the nozzle discharge $A_{2}$?
   \item The energy equation is non-linear in the unknown velocity $V_{2}$. All of the other parameters are known. Using an equation solving routine on your calculator or computer, what is the value of $V_{2}$?
   \item What is the volume flow rate through the nozzle?
   \end{enumerate*}
\end{enumerate}
\end{document}

我的问题是,我用过series = tobecont阻止在项目之后换行“5.“并添加了labelindent=16pt调整第二行的缩进,但似乎该labelindent命令不起作用series = tobecont。有什么办法可以解决这个问题吗?

谢谢你!

答案1

既然您显然不希望内联列表,为什么还要使用内联列表?删除所有设置似乎会得到您想要的输出:

\documentclass[12pt,a4paper]{article}
\usepackage{times}
\usepackage[inline, shortlabels]{enumitem}
\begin{document}
\begin{enumerate}
    \item \begin{enumerate}
    \item What is the flow rate  in terms of the velocity and area at state 2?
    \item What does the energy equation reduce to in terms of the velocity, area, and elevation at state 2?
    \item What is the value of the elevation $z_{2}$?
    \item What is the area of the nozzle discharge $A_{2}$?
   \item The energy equation is non-linear in the unknown velocity $V_{2}$. All of the other parameters are known. Using an equation solving routine on your calculator or computer, what is the value of $V_{2}$?
   \item What is the volume flow rate through the nozzle?
   \end{enumerate}
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容