更改章节标题中的脚注编号大小

更改章节标题中的脚注编号大小

我正在以书籍风格撰写论文,并使用以下格式设置章节标题大小:

\makeatletter % to set the layout of the chapters header
\def\@makechapterhead#1{%
  \vspace*{60\p@}%
  {\parindent \z@ \raggedright \normalfont
    \ifnum \c@secnumdepth >\m@ne
      \if@mainmatter
        %\huge\bfseries \@chapapp\space \thechapter
        \huge\bfseries \thechapter.\space%
        %\par\nobreak
        %\vskip 20\p@
      \fi
    \fi
    \interlinepenalty\@M
    \huge \bfseries #1\par\nobreak
    \vskip 40\p@
  }}
\makeatother

现在,当我在章节标题中添加脚注时,脚注编号非常大。我该如何将其缩小?

答案1

这里是章节标题的字体大小,跟踪它的\huge大小,你可以用footnotemarkfootnotemark{\large\protect\footnote{text}}

你可以用这个例子来测试一下

\documentclass{book}
\usepackage{lipsum}
\makeatletter % to set the layout of the chapters header
\def\@makechapterhead#1{%
  \vspace*{60\p@}%
  {\parindent \z@ \raggedright \normalfont
    \ifnum \c@secnumdepth >\m@ne
      \if@mainmatter
        %\huge\bfseries \@chapapp\space \thechapter
        \huge\bfseries \thechapter.\space%
        %\par\nobreak
        %\vskip 20\p@
      \fi
    \fi
    \interlinepenalty\@M
    \huge \bfseries #1\par\nobreak
    \vskip 40\p@
  }}
\makeatother

\begin{document}

\chapter{Chapter one{\Large\protect\footnote{footnote here}}}

\lipsum[1-3]

\end{document}

结果

在此处输入图片描述

相关内容