我用nomencl和ifthen包设计了NOMENCLATURE符号表,但是我想调子标题的段落格式,也就是段前段后都来点空格,不然太挤了,请问怎样做?
我目前的代码
\ifCLASSINFOpdf
\usepackage{nomencl}% For NOMENCLATURE
\usepackage{ifthen}% For NOMENCLATURE
\renewcommand{\nompreamble}{}% code after main title
\renewcommand{\nomgroup}[1]{%
\item[\normalfont\normalsize\textit{%
\ifthenelse{\equal{#1}{V}}{Variables}{}% add more groups as needed
\ifthenelse{\equal{#1}{P}}{Parameters}{}%
\ifthenelse{\equal{#1}{A}}{Abbreviations}{}%
\ifthenelse{\equal{#1}{I}}{Indices/sets}{}%
}]%
}
\makenomenclature % For NOMENCLATURE
\begin{document}
\nomenclature[V]{$ P_{i,t}^g $ }{Energy produced by user $i$ at time $t$}
\nomenclature[I]{ $ t \in T $ }{ Timesteps }
\nomenclature[A]{ ES }{ Energy storage }
\nomenclature[P]{ $ \theta $}{Commission charge }
目前的效果:
就是小标题很挤,想调段落格式,求助大神,应该怎么调;
(或者,有没有大神有更好的办法,能够让这个小标题的字体,段落格式和我文中subsection的格式保持一致,那样更好)