以下代码中的错误失控参数是什么?

以下代码中的错误失控参数是什么?

这是我的代码

\documentclass{article}
\usepackage{multicol}
\title{IELTS Course Companion}
\author{Ethen Hu}

\begin{document}
\setlength{\parindent}{0pt}
\maketitle
\section{numbers}
\subsection{question\footnote{OG 3.1}}
\begin{multicols}{2}
\renewcommand{\labelenumi}{\alph{enumi}}
\begin{enumerate}
    \item 1st/3rd
    \item \$10.50/\$10.15
    \item 6th/5th
    \item 17/70
    \item 19/90
    \columnbreak
    \item 15/50
    \item 52/62
    \item \pounds110/\pounds810
    \item 31st/33rd
    \item 22nd/27th
\end{enumerate}
\end{multicols}

%\subsection{question 2 \footnote{OG 3.3}






\end{document}

这在 overleaf 上编译成功,但出现警告:@sect 的参数有一个额外的}。失控参数?

这是 在此处输入图片描述错误页面,以防万一。我猜这与试图在

答案1

将可选参数添加到subsection,如下所示,

\subsection[question]{question\footnote{OG 3.1}}

让您轻松添加\footnote,并且您的示例运行良好。

答案2

 \title{IELTS Course Companion}
 \author{Ethen Hu}

 \begin{document}

  \maketitle

   \section{numbers}
    \subsection{question}
      {\footnote{OG 3.1}}


   \begin{tabular}{cc}
    $ 1^{st}$ & $3^{rd}$\\
    \$ 10.50 &\$ 10.15\\
    $ 6^{th}$ & $5^{th}$\\
    17 & 70\\
    19& 90\\
     &\\
   15 & 50\\
    52 & 62\\
    Lb 110 &  Lb 810\\
    $31^{st}$ & $33^{rd}$\\
   $22^{nd}$ & $27^{th}$\\
   \end{tabular}


   \end{document}

我以为这就是你想要的。多列用于表格环境,项用于枚举。请检查这是否是你想要的。

答案3

\documentclass{article} \usepackage{multicol} \title{雅思课程伴侣} \author{Ethen Hu} \renewcommand{\labelenumi}{\alph{enumi}} \setlength{\parindent}{0pt} \begin{document} \setlength{\parindent}{0pt} \maketitle \section{numbers} \subsection{question 1}{\footnote{OG 3.1}} \begin{multicols}{2}

\begin{enumerate} \item 第 1/3 个 \item $10.50/$10.15 \item 第 6/5 个 \item 17/70 \item 19/90 \columnbreak \item 15/50 \item 52/62 \item \pounds110/\pounds810 \item 第 31/33 个 \item 第 22/27 个 \end{enumerate} \end{multicols}

\subsection{问题 2} {\footnote{OG 3.3}}

\end{document} % 我重新排列了语句。它工作正常。我将语句 \renewcommand{\labelenumi}{\alph{enumi}} \setlength{\parindent}{0pt} 移到了 begin document 之前。这是所有命令的位置。

相关内容