glossarist / glossarist-ruby

Concept modeller in Ruby
BSD 2-Clause "Simplified" License
1 stars 1 forks source link

Differentiate types of abbreviations (acronym, initialism, truncation, other) #63

Closed ronaldtse closed 1 year ago

ronaldtse commented 1 year ago

There are a few kinds of "abbreviations" ("Abbreviated term resulting from the omission of some of its letters.").

See this: https://www.iso.org/obp/ui/#iso:std:iso:4:ed-3:v1:en

These are the kinds:

Originally posted by @ronaldtse in https://github.com/glossarist/glossarist-ruby/issues/62#issuecomment-1542400005

HassanAkbar commented 1 year ago

@ronaldtse We have all of these types in glossarist here (https://github.com/glossarist/glossarist-ruby/blob/main/config.yml#L47-L51), so we can set the type to abbreviation and set if it is an acronym or initialism etc like

- type: abbreviation
  initialism: true
  designation: something

OR

- type: abbreviation
  truncation: true
  designation: something

and for others we can leave it just to

- type: abbreviation
  designation: something

Is this acceptable or do we need to change something here?

ronaldtse commented 1 year ago

This is perfect. I just wanted to be sure that this was not removed. Thanks!