RevTex 4.2를 사용하는 동안 목차의 공백을 줄입니다.

RevTex 4.2를 사용하는 동안 목차의 공백을 줄입니다.

revtex4-2APS 스타일 클래스의 문서가 있습니다 . 스타일상의 이유로 문서 클래스를 유지하고 싶지만 저널 제출을 위해 문서의 스타일을 지정할 필요는 없습니다.

아주 간결한 목차를 포함하고 싶습니다. 구체적으로: (1) 최상위 섹션만, (2) 항목 사이의 최소 수직 공백, (3) 각주 크기의 산세리프 글꼴, (4) 링크가 포함됩니다. 지금까지 내가 달성할 수 있었던 것은 다음과 같습니다.

목차 텍스트

이것은 충분히 컴팩트하지 않습니다. 수직 공백을 완전히 제거하고 싶습니다. 이것이 가능한가?

(1)에 대하여. RevTex는 카운터를 무시하는 것 같습니다 tocdepth. 이 문제를 해결하기 위해 얻은 관련 질문에 대한 답변을 사용합니다(참고: 이것이 무엇인지 모르겠습니다).

\makeatletter
\def\l@subsection#1#2{}
\def\l@subsubsection#1#2{}
\makeatother

(3)에 관해서. tocloft, minitoc및 패키지를 사용해 보았습니다 parskip. 처음 두 개는 RevTex와 호환되지 않는 것으로 보이며 세 번째는 단락 텍스트의 RevTex 스타일을 엉망으로 만들었습니다. 전혀 효과가 있었던 것은 조정뿐 \baselinestretch이었지만 위 이미지에서 볼 수 있듯이 최소값에 도달한 것 같습니다.

이 공백을 더 줄일 수 있는 방법이 있나요?

다음은 최소한의 예입니다.

\documentclass[reprint, aps, prx]{revtex4-2}
\usepackage{hyperref}
\hypersetup{colorlinks = true, linkcolor = blue, linktoc = all}
\begin{document}
{
\makeatletter
\def\l@subsection#1#2{}
\def\l@subsubsection#1#2{}
\makeatother

\footnotesize \sf 
\renewcommand{\baselinestretch}{0.1}

\tableofcontents
}
\section{Introduction}
For comparison, here is the spacing of normal text.
\section{Results}
\subsection{I don't want this in TOC}
\subsection{I also don't want this in TOC}
\section{Another section}
\section{And another}
\section{Less vertical white space between sections please}
\section{Conclusion}
\clearpage
\end{document}

내가 설정하려고 시도할 수 있는 모든 TeX 길이가 도움이 될 것입니다. 섹션을 반복하고 표에 작성하여 "비공식" ToC를 재현한 답변도 매우 도움이 될 것입니다.

답변1

\documentclass[reprint, aps, prx]{revtex4-2}
\usepackage{hyperref}
\hypersetup{colorlinks = true, linkcolor = blue, linktoc = all}
\begin{document}

\makeatletter
\def\l@subsection#1#2{}
\def\l@subsubsection#1#2{}
\def\l@f@section{}%
\def\toc@@font{\footnotesize \sffamily}%
\makeatother


\tableofcontents



\section{Introduction}
For comparison, here is the spacing of normal text.
\section{Results}
\subsection{I don't want this in TOC}
\subsection{I also don't want this in TOC}
\section{Another section}
\section{And another}
\section{Less vertical white space between sections please}
\section{Conclusion}
\clearpage
\end{document}

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

관련 정보