
토론과 관련된 일부 작업에서하나의 용어집에 대해서만 입력 카운터가 참인 용어집fmultico
오른쪽에서 왼쪽으로 쓰는 언어에 사용되는 패키지를 사용하여 두 열에 일부 단어와 동의어로 정렬된 용어집을 만듭니다 . 용어집을 인쇄할 때 두 열의 왼쪽 매트진에 번호가 매겨진 열을 얻었지만 오른쪽 여백에 넣고 싶습니다. 왼쪽 열의 왼쪽 여백과 오른쪽 열의 오른쪽 여백에 항목 번호를 어떻게 넣을 수 있나요?
다른 것. 번호가 없는 항목의 경우 용어집 제목과 동일한 너비의 열을 원합니다. 이 너비를 어떻게 제어할 수 있나요?
사용된 파일은 다음과 같습니다.
\documentclass{article}
\usepackage{fmultico}
\usepackage{geometry}
\geometry{paperwidth=165mm, paperheight=140mm, top=5mm, bottom=5mm}
\pagestyle{empty}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ORGANIZE ENTRIES AND GLOSSARIES OF FOOTNOTES
\usepackage[entrycounter,nomain,nonumberlist]{glossaries}
\renewcommand*{\glspostdescription}{}
%%Glossary of footnotes
\newglossary[soc]{Dico}{sox}{soo}{The title of the glossary}
\makeglossaries
\newcommand*{\entrydico}[2]
{%
\newglossaryentry{#1}{type=Dico,name={},text={#1},sort={#1},
description={\begin{tabular}{p{2 cm}p{2 cm}}
\hspace*{-6pt}#1 &\hfill #2\hspace*{-6pt}\\
\hline
\end{tabular}} }
}
%% The link of the \gls commands
\defglsentryfmt[Dico]{}
%% ENTRIES
\entrydico{word1}{synonym1}
\entrydico{word2}{synonym2}
\entrydico{word3}{synonym3}
\entrydico{word4}{synonym4}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% END GLOSSARIES COMMANDS
\begin{document}
The word word1\gls{word1}
The word word2\gls{word2}
The word word3\gls{word3}
The word word4\gls{word4}
\vspace*{5mm}
\hrule
\vspace*{5mm}
\begin{multicols}{2}[]
\printglossary[type=Dico]
\end{multicols}
\vspace*{5mm}
\hrule
\vspace*{5mm}
Non-numbered entries with the option `entrycounter=false`
\begin{multicols}{2}[]
\printglossary[type=Dico,entrycounter=false]
\end{multicols}
\end{document}
그리고 생성된 용어집은 다음과 같습니다.