在乳胶中使用ref时删除格式

时间:2014-08-05 04:37:11

标签: latex

我有一个像这样定义的部分:

\section*{\huge Summary}
\label{chap:summary}

然后我使用\ ref到它

\nameref{chap:summary}

但是引用也采用了\ large格式。我该如何删除它?

1 个答案:

答案 0 :(得分:0)

您应该避免在部分标题中添加字体选择。相反,依靠包来管理您的格式。我已经使用secsty调整了字体字体;其他选项也存在:

enter image description here

\documentclass{article}
\usepackage{sectsty,nameref}
\sectionfont{\huge}
\begin{document}
\section*{Summary}\label{chap:summary}
See section \nameref{chap:summary}.
\end{document}