titlesec 형식의 장 제목에서 각주 기호 크기 변경

titlesec 형식의 장 제목에서 각주 기호 크기 변경

titlesec챕터 제목의 형식을 정의하는 데 사용하고 있습니다 . 현재 이 제목 내의 각주 기호는 동일한 형식으로 표시되지만 저자는 이 기호가 다소 작아지기를 원합니다.

블록 \titleformat은 다음과 같습니다.

\titleformat{\chapter}
 {\LARGE\bfseries} % format of title
 {\makebox[0.5in][l]{\thechapter}} % chapter number
 {0em} % no additional space between number-box and title
 ...

제목 자체의 각주 기호 크기를 지정하기 위해 이 블록 내에서 사용할 수 있는 명령이 있습니까?

footmisc각주용으로 사용하고 있습니다 .

답변1

적어도 표준 문서 클래스(및 footmisc로드된 패키지 포함)의 경우 각주 표시는 실제 글꼴 크기에 맞게 조정되는 위 첨자로 조판됩니다(적절해야 함). 그럼에도 불구하고 장 제목에 다소 작은 표시를 원할 경우 커널 매크로 정의에 \scalebox(패키지에서 )을 추가 하고 장 제목 내부에 있는지 여부에 따라 크기 의존성을 조정할 수 있습니다.graphicx\@makefnmark

\documentclass{book}

\usepackage{graphicx}

\newif\ifheading

\newcommand*{\fnmarkscale}{\ifheading 0.85 \else 1 \fi}

\makeatletter
\renewcommand*{\@makefnmark}
    {\hbox{\@textsuperscript{\scalebox{\fnmarkscale}{\normalfont\@thefnmark}}}}
\makeatother

\usepackage{titlesec}

\titleformat{\chapter}
 {\LARGE\bfseries} % format of title
 {\makebox[0.5in][l]{\thechapter}} % chapter number
 {0em} % no additional space between number-box and title
 {\headingtrue\LARGE}

\usepackage[symbol]{footmisc}

\textheight 180pt% just for the example

\begin{document}

\chapter[A chapter title]{A chapter title with a footnote\footnote{First footnote.}}

Some text with a footnote.\footnote{Second footnote.}

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보