我正在尝试这样做:
\documentclass{article}
\begin{document}
\let\oldsection\section
\renewcommand\section[1]{
\invisible{\oldsection[1]}
\MyOwnSectionFormattingHere #1
}
\section{Introduction}
\end{document}
我希望原件\section
能执行其应执行的操作(例如增加计数器),但不打印任何内容。