答案1
\@seccntformat
为此,最好重新定义部分计数器的格式(通过),而不是重新定义整个计数器表示。为什么?重新定义计数器表示也会过滤到\label
s,因此\ref
也会过滤到 erences。
\documentclass{article}
\makeatletter
\renewcommand{\@seccntformat}[1]{Lecture~\csname the#1\endcsname{} -- }
\makeatother
\newcommand{\lecture}{\section}% For consistency sake...
\begin{document}
See Lecture~\ref{lec:linear-combinations-and-subspaces}.
\lecture{Linear combinations and subspaces}
\label{lec:linear-combinations-and-subspaces}
\end{document}