科文顿示例子列表未对齐

科文顿示例子列表未对齐

我正在尝试使用 Covington 来生成论文的示例,但在任何有子示例的地方,(a) 和 (b) 示例都不对齐。

这是我的代码:(根据要求,编辑以显示最小工作示例)

\documentclass[12pt]{report}
\title{The English resultative: Argumenthood status and formal models}
\date{\today}
\author{Elizabeth Christie}
\bibliographystyle{natbib.fullname} % Use this line on Liz's laptop

\usepackage[top=1in, bottom=1in, left=1.5in, right=1in,includefoot,includehead]{geometry} % CARLETON UNI thesis margins
\usepackage{helvet}
\usepackage{covington}
\usepackage{setspace}
\usepackage{qtree}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{bigstrut}
\usepackage{array}
\usepackage{MnSymbol}
\usepackage{avm}
\usepackage{stmaryrd}
\usepackage{natbib}
\usepackage{enumerate}
\usepackage{rotating} % for making rotated tables
\usepackage{xcolor}
\usepackage[citebordercolor=white,linkbordercolor=white,urlbordercolor=white]{hyperref} %for putting links in the document.

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\rhead{\thepage} %puts the page number in the top right corner
\lhead{\rightmark} % puts the section number and name in the top left corner

\avmfont{\sc}
\avmoptions{active}

\begin{document}
\begin{examples}
    \item \label{ResBack:Sem:Tel:SubInterval} 
    \begin{enumerate}[(a)]
        \item Bill heated the mixture hotter.
        \item Bill hammered the metal flatter.
        \item Penelope wove the shawl longer.
    \end{enumerate}
\end{examples}
\bibliography{C:/Bibliographies/lizbib}
\end{document}

输出如下:

我的文档的屏幕截图

我希望子列表与自身对齐,但从我读过的内容来看,我不知道该怎么做。有人能帮我吗?

答案1

根据记录,covington 1.2(2016 年 8 月)引入了一个长度examplenumbersep,可用于手动修复此类问题,例如\setlength\examplenumbersep{1em}

相关内容