我尝试使用它来按字母顺序gloss
输出文件中的条目.bib
(如字典)。出于某种原因,我无法让它输出除标题之外的任何内容。我在 Windows 中使用 TexWorks。
梅威瑟:
\documentclass{article}
\usepackage{fullpage} %use 1'' margins instead of default latex margins
\usepackage{indentfirst} %indents first paragraph
\usepackage[refpages]{gloss}
\usepackage{filecontents}
\begin{filecontents*}{style.bib}
@gd{test,
word = {test},
definition = {test entry}
}
\end{filecontents*}
\makegloss
\begin{document}
\emph{The Rensselaer Polytechnic} Style Guide
\gloss[nocite]{*}
\printgloss{style}{}
\end{document}
答案1
\makegloss
假设您的.tex
文件名为myfile.tex
,命令会生成一个文件myfile.gls.aux
,该文件必须经过 BibTeX 处理才能在词汇表中生成正确的条目。
因此,正如gloss
软件包文档所述,您必须按顺序运行,
latex我的文件
bibtex myfile.gls
latex我的文件
latex我的文件
以获得正确的输出。
如果你按照上述步骤操作,你将获得: