我怎样才能获得给定的结果,但使用 \documentclass{article} 而不是 \documentclass{report}?

我怎样才能获得给定的结果,但使用 \documentclass{article} 而不是 \documentclass{report}?

使用此代码\documentclass{report}

\documentclass{report}
\usepackage{appendix}


\begin{document}
    
    \appendix
    \chapter{title of this section }
    \label{sect:app}
    \renewcommand{\theequation}{\thechapter.\arabic{equation}}
    Let us consider
    \begin{equation}
        f(x) = ax^2 + bx + c
    \end{equation}
    
    then, in Appendix~\ref{sect:app}, we have ...
\end{document}

我得到了这个结果

在此处输入图片描述

该代码不适用于\documentclass{article},我想获得相同的结果,但是使用\documentclass{article},我该怎么做?

我非常感谢任何提前的评论。

相关内容