我有一个像这样定义的部分:
\section*{\huge Summary}
\label{chap:summary}
然后我使用\ ref到它
\nameref{chap:summary}
但是引用也采用了\ large格式。我该如何删除它?
答案 0 :(得分:0)
您应该避免在部分标题中添加字体选择。相反,依靠包来管理您的格式。我已经使用secsty
调整了字体字体;其他选项也存在:
\documentclass{article}
\usepackage{sectsty,nameref}
\sectionfont{\huge}
\begin{document}
\section*{Summary}\label{chap:summary}
See section \nameref{chap:summary}.
\end{document}