Can educational organizations create customized glossaries and terminology databases in DITA?

Customized glossaries and terminology databases are essential for educational organizations to ensure clarity and consistency in their educational materials. DITA provides a structured approach to create and manage these resources. Here’s how educational organizations can create customized glossaries and terminology databases in DITA:

Glossary Topics

In DITA, you can create dedicated glossary topics to house your customized terminology and abbreviations. Each term is typically defined within a <term> element and its definition within a <definition> element. For instance:


<glossentry id="custom_term">
  <glossterm>Custom Term</glossterm>
  <glossdef>A term specific to our educational organization with a custom definition.</glossdef>

Terminology Database

To manage and organize a comprehensive terminology database, educational organizations can create a DITA map that includes links to all their glossary topics. This map acts as a central hub for terminology and can be referenced across various educational documents. Here’s an example:


<map>
  <title>Terminology Database</title>
  <topicref href="glossary.dita"/>
  <topicref href="another_glossary.dita"/>
  <!-- Add more glossary topics as needed -->

Linking to Custom Glossaries

Once you’ve created your customized glossaries and a terminology database, you can easily link to them within your educational content. By referencing the <glossref> element and specifying the glossary map, you can create links to the corresponding glossary entries. This ensures that learners have easy access to your customized definitions. For example:


To learn more about <glossref href="terminology_database.dita#custom_term">Custom Term</glossref>, please refer to our terminology database.

This approach empowers educational organizations to maintain consistency and provide clear explanations of their specific terminology and abbreviations.