The
EditGlossaryIncludes
command enables you to reshuffle the
includes
of a
glossary
via an
expansion.
When selecting the menu item,
-
a file browser dialog lets you select the
glossary
for which you want to reshuffle the includes,
-
then the
Edit Glossary Includes Command Input
dialog is displayed:
It is similar to the
Edit Glossary Includes
dialog that you open by clicking the
Includes Button
of the
Glossary Viewer Side Bar.
Clicking the OK button though does not perform the reshuffling of the
includes
on the spot.
It just prepares the
EditGlossaryIncludes
command input:
{EditGlossaryIncludes}
<include file="Glossary\Ages.xglo" color="#FBEFF3" />
<shell file="Glossary\Medical Base.xglo" />
<include file="Glossary\Address.xglo" color="#EBEFFA" />
<include file="Glossary\Drugs.xglo" color="#FDFFEA" />
<include file="Glossary\Sutures.xglo" color="#F2FBF6" />
{/EditGlossaryIncludes}
It is only upon
expansion
of the produced command that the
includes
reshuffling effectively takes place.
Example
Assuming your main glossary called main.xglo
-
currently includes a dates glossary with dates in US format
called Dates_US.xglo,
-
and you would like to switch to dates in US military format
as in Dates_US_military.xglo.
You can easily do it with the following expansion:
{EditGlossaryIncludes}
<shell file="Glossary\main.xglo" />
<include file="Glossary\Dates_US_military.xglo" color="#EBF2BF" />
{/EditGlossaryIncludes}{Wrap}
{NoSpacing}
And when you want to switch back to dates in US format
you may use the following expansion:
{EditGlossaryIncludes}
<shell file="Glossary\main.xglo" />
<include file="Glossary\Dates_US.xglo" color="#D5EBF6" />
{/EditGlossaryIncludes}{Wrap}
{NoSpacing}
With these two expansions,
it is very easy to swap the included dates glossary whenever you need to.