我的代码如下所示。
\textbf{I. Introduction}\\
\hspace*{1em} \textbf {A. Background:}
\begin{itemize}
\setlength{\itemsep}{0pt}
\setlength{\parsep}{0pt}
\setlength{\parskip}{0pt}
\item[1.] The differences between clear vowels and conversational vowels are widely studies.
\begin{itemize}
\item[a.]Vowel Duration: Clear vowels are generally longer than conversational vowels
\item[b.] Dynamic Formant Movement: Clear vowels exhibit greater movement than naturally produced vowels.
\end{itemize}
\end{itemize}
abcccccccccccccdfdfadsdfasdfsfssfdsdfsfa
答案1
正如@Bernard 在评论中建议的那样,您可能需要加载枚举项包,从环境切换itemize
到环境,并使用选项enumerate
启动两个环境。enumerate
nosep
以下屏幕截图显示了您的原始代码和实现上述建议的代码的输出。
\documentclass{article}
\usepackage{enumitem}
\setlength\parindent{0pt}
\begin{document}
% Before:
\hrule
\textbf{I. Introduction}
\hspace*{1em}\textbf {A. Background:}
\begin{itemize}
\setlength{\itemsep}{0pt}
\setlength{\parsep}{0pt}
\setlength{\parskip}{0pt}
\item[1.] The differences between clear vowels and conversational
vowels are widely studies.
\begin{itemize}
\item[a.]Vowel Duration: Clear vowels are generally longer than
conversational vowels
\item[b.] Dynamic Formant Movement: Clear vowels exhibit greater
movement than naturally produced vowels.
\end{itemize}
\end{itemize}
\hrule
% After:
\textbf{I. Introduction}
\hspace*{1em}\textbf{A. Background:}
\begin{enumerate}[nosep,label=\arabic*.]
\item The differences between clear vowels and conversational
vowels are widely studies.
\begin{enumerate}[nosep,label=\alph*.]
\item Vowel Duration: Clear vowels are generally longer than
conversational vowels
\item Dynamic Formant Movement: Clear vowels exhibit greater
movement than naturally produced vowels.
\end{enumerate}
\end{enumerate}
\hrule
\end{document}