我希望使用一种有效的方法来创建一个词汇表,并能够对不同列表(缩写、首字母缩略词、符号、词汇表等)中的不同“类型”的条目进行分类。
我关注了两篇非常棒的帖子,我建议大家:
这第一,展示了如何使用 .bib 文件对符号的不同条目进行分类。我按照方法 4 进行了操作。第二篇帖子展示如何按照此方法生成包含符号、首字母缩略词、定义等的词汇表。
我是 LaTex 新手,但通过遵循这些方法我学到了很多东西(非常感谢 Nicola Talbot)。我快完成了,但结果中仍然有一些错误。我创建了测试文件来测试我想要实现的目标。
这是我正在测试的代码:
\documentclass{report}
\usepackage{amssymb}
\usepackage{siunitx}
\usepackage[record,abbreviations,acronyms,symbols,stylemods={tree},style=treegroup]{glossaries-extra}
% always set the abbreviation style before \GlsXtrLoadResources
\setabbreviationstyle{short-long-desc}
\setabbreviationstyle[acronym]{short-long}
% Assign group titles:
\glsxtrsetgrouptitle{latin}{Latin Symbols}
\glsxtrsetgrouptitle{greek}{Greek Symbols}
\GlsXtrLoadResources[
src={no-interpret-preamble,glossary},% bib files
sort={en-US},% sort according to this locale
set-widest,% needed for 'alttree' styles
% save-locations=false % use this command to pring only the acronyms you are using
selection=all% select all entries in the .bib files
]
\GlsXtrLoadResources[
src={symbols-greek},
sort={letter-case}, % sort according Unicode value
field-aliases={
unitname=name,
unitsymbol=symbol,
measurement=description
},
symbol-sort-fallback=name,
type=symbols,
group=greek,
set-widest,% needed for 'alttree' styles
save-locations=false % pring only used symbols.
]
\GlsXtrLoadResources[
src={symbols-latin},
sort={letter-case},% sort according Unicode value
symbol-sort-fallback=name,
type=symbols,
group=latin,
set-widest,% needed for 'alttree' styles
selection=all% select all entries in the .bib files
]
\begin{document}
\section*{Examples}
In this section, I will use the following greek symbols: \gls{alpha}, \gls{alphalin} and \gls{delta}.
One acronym is for example \glstext{ad} and one abbreviation is given by \glstext{html}.
\printunsrtglossary[type=acronyms,style=alttree,title={List of Acronyms}]
\printunsrtglossary[type=abbreviations,style=alttree,title={List of Abbreviations}]
\printunsrtglossary[style=alttree,title={Glossary}] % By not specifing the type, I pring only the entries
\printunsrtglossary[type=symbols,style=alttreegroup,title={List of Symbols}]
\end{document}
您可以找到该文件no-interpret-preamble.bib
这里。文件glossary.bib
,symbols-latin.bib
看起来symbols-greek.bib
像这样(灵感来自 Nicola Talbot 的作品):
词汇表.bib:
% glossary.bib
% This file is public domain. See the "Examples" chapter
% in the bib2gls user manual for a more detailed description
% of this file.
% Encoding: UTF-8
@preamble{"\providecommand{\abbrvtag}[1]{#1}"}
@string{markuplang="\abbrvtag{m}arkup \abbrvtag{l}anguage"}
@entry{TeX,
name={{}\TeX},
description={a format for describing complex type and page layout
often used for mathematics, technical, and academic publications},
identifier={markuplanguage}
}
@entry{LaTeX,
name={{}\LaTeX},
description={a format of \glstext{TeX} designed to separate
content from style},
identifier={markuplanguage}
}
@entry{markdown,
name={markdown},
description={a lightweight markup language with plain text
formatting syntax},
identifier={markuplanguage}
}
@acronym{ad,
short={AD},
long={Affinity Diagram},
description={Tool that gathers large amounts of language data and organizes them into groupings based on their natural relationships},
identifier={acronym}
}
@acronym{dom,
short={DOM},
long={Document Object Model},
description={Cross-platform and language-independent application programming interface},
identifier={acronym}
}
@acronym{spa,
short={SPA},
long={Single Page Application},
description={Web applicaiton of web site that interacts with the user by dynanically rewriting the current page},
identifier={acronym}
}
@acronym{svp,
short={SVG},
long={Scalable Vector Graphics},
description={{}\glstext{xml}-based vector image format for two-dimensional graphics with support for interactivity and animation},
identifier={acronym}
}
@abbreviation{xml,
short={XML},
long={e\abbrvtag{x}tensible }#markuplang,
description={a markup language that defines a set of rules for
encoding documents},
identifier={markuplanguage}
}
@abbreviation{html,
short={HTML},
long={\abbrvtag{h}yper\abbrvtag{t}ext }#markuplang,
description={the standard markup language for creating web pages},
identifier={markuplanguage}
}
@abbreviation{mathml,
short={MathML},
long={\abbrvtag{m\NoCaseChange{ath}}ematical }#markuplang,
description={markup language for describing mathematical notation},
identifier={markuplanguage}
}
@abbreviation{xhtml,
short={XHTML},
long={e\abbrvtag{x}tensible \abbrvtag{h}yper\abbrvtag{t}ext }
# markuplang,
description={{}\glstext{xml} version of \glstext{html}},
identifier={markuplanguage}
}
符号-希腊语.bib:
% symbols-greek.bib
% Put here all greek symbols
% Encoding: UTF-8
@symbol{alpha,
name={\ensuremath{\alpha}},
description={angular acceleration},
indentifier={mathgreek}
}
@symbol{alphalin,
name={\ensuremath{\alpha_{L}}},
description={linear coefficient of thermal expansion},
indentifier={mathgreek}
}
@symbol{delta,
name={\ensuremath{\delta}},
description={Kronecker delta},
indentifier={mathgreek}
}
@symbol{lambda,
name={\ensuremath{\lambda}},
description={Lagrange multiplier},
indentifier={mathgreek}
}
@symbol{chi,
name={\ensuremath{\chi}},
description={chromatic number},
indentifier={mathgreek}
}
@symbol{rho,
name={\ensuremath{\rho}},
description={density},
indentifier={mathgreek}
}
@symbol{zeta,
name={\ensuremath{\zeta}},
description={Riemann zeta function},
indentifier={mathgreek}
}
符号-拉丁语.bib:
% symbols-latin.bib
% Put here all latin symbols
% Encoding: UTF-8
@symbol{x,
name={\ensuremath{x}},
description={position},
indentifier={mathlatin}
}
@symbol{v,
name={\ensuremath{v}},
description={velocity},
indentifier={mathlatin}
}
@symbol{a,
name={\ensuremath{a}},
description={acceleration},
indentifier={mathlatin}
}
@symbol{t,
name={\ensuremath{t}},
description={time},
indentifier={mathlatin}
}
@symbol{E,
name={\ensuremath{E}},
description={Young's modulus},
indentifier={mathlatin}
}
@symbol{F,
name={\ensuremath{F}},
description={force},
indentifier={mathlatin}
}
@symbol{Tm,
name={\ensuremath{T_{m}}},
description={melting point temperature},
indentifier={mathlatin}
}
@symbol{KIC,
name={\ensuremath{K_{IC}}},
description={stress intensity factor},
indentifier={mathlatin}
}
@symbol{Z,
name={\ensuremath{Z}},
description={atomic number},
indentifier={mathlatin}
}
然而,得到的结果并不令人满意。
我做错了什么?为什么我无法获得缩写词列表?如何使缩写词列表可读?
我将非常感谢您的帮助。我快到了……
答案1
您应该在记录中发现一些警告:
Package glossaries-extra Warning: Glossary type `acronyms' doesn't exist on input line 65.
Package glossaries-extra Warning: No entries defined in glossary `acronyms' on input line 65.
首字母缩略词词汇表的标签并不acronym
适合acronyms
你:
\printunsrtglossary[type=acronym,style=alttree,title={List of Acronyms}]
或者
\printunsrtglossary[type=\acronymtype,style=alttree,title={List of Acronyms}]
该set-widest
选项会尝试确定哪个条目的名称最宽,但bib2gls
不知道name
缩写/首字母缩略词的格式(因为它无法访问文档中设置的样式信息),因此它默认假设名称只是短格式,因此在执行测量时不会考虑长格式。但是,该alttree
样式不适用于带有描述的缩写,因为您最终只会留下很少的空间来描述。最好使用连续样式(例如tree
)或在描述前放置中断的样式(例如altlist
)。
例如:
\printunsrtglossary[type=abbreviations,style=altlist,title={List of Abbreviations}]
顺便说一句,最好不要\glstext
与缩写一起使用。如果您只希望显示缩写形式(无论是否使用了缩写),则使用\gls
其中一种short-nolong
样式。¹(如果您想确保标题或标题的缩写形式,请使用\glsfmtshort
。)使用\gls
而不是\glstext
有助于确保缩写样式正确。
¹样式中有一个错误short-nolong-desc
,已在glossaries-extra
v1.39 中修复。