nomecl의 그룹 헤더 뒤의 세로 공간을 변경하시겠습니까?

nomecl의 그룹 헤더 뒤의 세로 공간을 변경하시겠습니까?

패키지에는 nomencl여러 그룹으로 항목이 분류되어 있습니다(적절하게 정의하여 \nomgroup).

수직 공간을 어떻게 바꿀 수 있나요?~ 후에각 그룹 제목, 즉 그룹 제목과 해당 그룹의 첫 번째 항목 사이? (아래에 표시된 것처럼 그룹 제목 앞의 수직 공간을 변경하는 방법을 이미 알고 있습니다 \nomgroupstartsep.)

예:

\documentclass{memoir}    
\usepackage{xstring}

\usepackage[refpage]{nomencl}
\renewcommand{\nomname}{Index of Notation}
\renewcommand*{\pagedeclaration}[1]{\unskip, #1}

\setlength{\nomitemsep}{-\parsep}

\newlength{\nomgroupstartsep}
\setlength{\nomgroupstartsep}{16pt}

\newcommand{\nomenclheader}[1]{\item[\hspace*{-\itemindent}\bfseries#1]}

\renewcommand\nomgroup[1]{%
 \itemsep\nomgroupstartsep%
  \IfStrEqCase{#1}{%
   {C}{\nomenclheader{Constants}}% 
   {S}{\nomenclheader{Sets}}%
  }%
  \itemsep\nomitemsep% restore spacing
}
\makenomenclature

\begin{document}

The number $\pi$ is the ratio of the circumference of a circle to its diameter;
$e$ is the base of the natural logarithm.%
\nomenclature[c2]{$\pi$}{ratio of circle's circumference to diameter}
\nomenclature[c1]{$e$}{base of natural logarithm}

Write $x \in A$ to mean that $x$ is an element of the set $A$.%
\nomenclature[s3]{$x \in A$}{$x$ is an element of $A$}
For sets $A$ and $B$, the notation $A \subset B$ means that $A$ is a subset of $B$.%
\nomenclature[s4]{$A \subset B$}{$A$ is a subset of $B$}    
Use lower-case letters $x$, $y$, $z$, etc., for elements of sets, and upper-case letters $A$, $B$, $C$, etc., for sets.%
\nomenclature[s1]{$x$, $y$, $z$, etc.}{elements of sets}
\nomenclature[s2]{$A$, $B$, $C$, etc.}{sets}

\printnomenclature[2.5cm]

\end{document}

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

관련 정보