목차 페이지 번호 글꼴 옵션 설정

목차 페이지 번호 글꼴 옵션 설정

다음과 같은 라텍스 문서가 있습니다.

\documentclass{report}

\usepackage[activate={true,nocompatibility},final,tracking=true,kerning=true,spacing=true,factor=1100,stretch=10,shrink=10]{microtype}
\usepackage[default,osf]{sourcesanspro}

\begin{document}

\tableofcontents

\chapter{Introduction} This chapter's content... \clearpage
\section{Structure} This section's content... \clearpage
\subsection{Top Matter} This subsection's content... \clearpage
\section{More Structure} This section's content... \clearpage
\subsection{More Top Matter} This subsection's content... \clearpage

\chapter{Chapter} This chapter's content... \clearpage
\section{Structure} This section's content... \clearpage
\subsection{Top Matter} This subsection's content... \clearpage
\section{More Structure} This section's content... \clearpage
\subsection{More Top Matter} This subsection's content... \clearpage

\chapter{Chapter} This chapter's content... \clearpage
\section{Structure} This section's content... \clearpage
\subsection{Top Matter} This subsection's content... \clearpage
\section{More Structure} This section's content... \clearpage
\subsection{More Top Matter} This subsection's content... \clearpage

\chapter{Chapter} This chapter's content... \clearpage
\section{Structure} This section's content... \clearpage
\subsection{Top Matter} This subsection's content... \clearpage
\section{More Structure} This section's content... \clearpage
\subsection{More Top Matter} This subsection's content... \clearpage

\end{document}

다음과 같은 TOC가 생성됩니다.

목차

페이지 번호 정렬이 꽤 나빠 보입니다.

페이지 번호

보시다시피 저는 문서를 구식 수치로 기본 설정했지만 TOC에서는 보기에 좋지 않습니다. 나는 목차 페이지 번호에 표 형식 안감(또는 아마도 표 형식의 구식) 수치를 사용하는 것을 선호합니다.

표 형식의 안감 그림을 사용하도록 TOC를 어떻게 설정합니까?

주름 하나... 이 작업을 수행할 수 있는 방법이 있을 수 있다고 생각 fontspec하지만 내 microtype옵션이 작동하지 않는 것 같습니다 XeLaTeX.LuaLaTeX

답변1

패키지 sourcesanspro는 표 형식의 안감 그림으로 변경하는 명령을 제공하지 않지만 쉽게 만들 수 있습니다.

\newcommand\tabularnums{%
  \def\sourcesanspro@figurealign{T}%
  \def\sourcesanspro@figurestyle{LF}%
  \def\familydefault{SourceSansPro-TLF}%
  \fontfamily{SourceSansPro-TLF}%
  \selectfont
}

그 다음에

{\tabularnums
 \tableofcontents
}

다음을 산출합니다:

목차

관련 정보