用語集カスタムスタイルオーバーフルとアンダーフルの配置

用語集カスタムスタイルオーバーフルとアンダーフルの配置

私はカスタム用語集のスタイルを再利用しています(これについて例)そして最近いくつかの問題を発見しました。

きれいに配置するために、両方の列の間隔を固定したいと思います。

私が使用しているスタイルは次のとおりです。

\newglossarystyle{mystyle}{
  \setglossarystyle{long}
  \renewenvironment{theglossary}
  {\begin{longtable}{p{0.25\textwidth} p{0.7\textwidth}}}
  {\end{longtable}}
}

ここに 2 つの問題があります。ご覧のとおり、全体の幅はlongtable1 ではなく 0.95 です (そうでないとテキストがはみ出して、かなり奇妙になります)。

\hbox私が抱えているもう 1 つの問題は、次のような用語集で、過剰または不足のエラーが発生することです。

\newglossaryentry{First}
{
    name={A glossary with a long name such as this one},
    description={And a small description}
}
\newglossaryentry{Second}
{
    name={Small name},
    description={And a long description, because this is just a test glossary. You know...}
}

私が受け取ったエラー(行は気にしないでください):

Underfull \hbox (badness 1303) in paragraph at lines 3--5 output.gls, line 3
Overfull \hbox (2.09003pt too wide) in alignment at lines 2--9 output.gls, line 2

これをどうすれば修正できますか?

関連情報