내 사용자 정의 용어집 스타일을 재사용하고 있습니다(기반)이에예) 최근에 몇 가지 문제를 발견했습니다.
깔끔한 정렬을 위해 두 열의 간격을 고정하고 싶습니다.
내가 사용하는 스타일은 다음과 같습니다.
\newglossarystyle{mystyle}{
\setglossarystyle{long}
\renewenvironment{theglossary}
{\begin{longtable}{p{0.25\textwidth} p{0.7\textwidth}}}
{\end{longtable}}
}
여기에는 두 가지 문제가 있습니다. 보시다시피, 의 전체 너비는 longtable
1이 아니라 0.95입니다(그렇지 않으면 텍스트가 튀어나와 꽤 이상해집니다).
\hbox
내가 가진 또 다른 문제는 다음과 같은 종류의 용어집에서 과도하게 가득 차거나 적게 채워지는 오류가 발생한다는 것입니다 .
\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
이 문제를 어떻게 해결할 수 있나요?