对于我的论文,我希望将 nomencl 格式化为与其他格式相同的样式。简单地说,这意味着我希望 nomencl 如下所示:
符号 数量 单位
t时间
列表的其余部分
上面显示的三行分别是来自 booktabs 包的 \toprule、\midrule 和 \bottomrule。
我检查了 nomentbl 包,但在这里我没有得到所需的水平线。大概我的 LaTeX 黑客技能还不足以解决这个问题。
这是单位输入行的示例:
\nomenclature[ra ]{$t$}{Time}
这是我尝试得到的:
\renewcommand{\nompreamble}{\toprule}
\renewcommand{\nompreamble}{\bottomrule}
但这并没有成功。
希望有人能给我指明正确的方向!
答案1
我不知道你是如何调整你的nomentbl.sty
。对于我的nomentbl.sty
文件,这是我添加到 nomentbl.ist
文件中以获得所需效果的内容。
preamble "\n\\begin{thenomenclature}\n%
\\begin{longtable}[l]%
{lp{\\textwidth*\\real{0.6}}c!{\\extracolsep{\\fill}}lll}\\toprule %% <------ rule here
\\multicolumn{1}{l}{Symbol}&\\multicolumn{1}{c}{Quantity}& \\multicolumn{1}
{c}{Unit}\\\\ \n %% <------ header here
\\bottomrule %% <------ rule here
\\nopagebreak\\\\*[\\parskip]\n"
postamble "\\bottomrule %% <------ rule here
\n\\end{longtable}\n\n\\end{thenomenclature}\n" keyword
"\\nomenclatureentry"
它看上去是这样的。
您可以适当编辑您的nomentbl.ist
以获得此效果。