Set languages via package options
To define the languages for the dictionary the package options primary and secondary have to be set.
This commit is contained in:
parent
8a6bc1c949
commit
01849f4046
2 changed files with 13 additions and 2 deletions
|
@ -9,5 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
- Set the languages of the dictionary by using the package options
|
||||||
|
`primary` and `secondary`.
|
||||||
- Create the `dictionary` environment where the
|
- Create the `dictionary` environment where the
|
||||||
`\entry{word}{description}` command can be used.
|
`\entry{word}{description}` command can be used.
|
||||||
|
|
|
@ -4,6 +4,15 @@
|
||||||
\RequirePackage{babel}
|
\RequirePackage{babel}
|
||||||
\RequirePackage{datatool}
|
\RequirePackage{datatool}
|
||||||
|
|
||||||
|
\DeclareKeys[dictionary]{
|
||||||
|
primary.store = \@dictionary@primary,
|
||||||
|
secondary.store = \@dictionary@secondary
|
||||||
|
}
|
||||||
|
|
||||||
|
\ProcessKeyOptions[dictionary]
|
||||||
|
|
||||||
|
\PassOptionsToPackage{\@dictionary@primary,\@dictionary@secondary}{babel}
|
||||||
|
|
||||||
\newcommand{\entry}[2]{%
|
\newcommand{\entry}[2]{%
|
||||||
\DTLnewrow{dictionary}%
|
\DTLnewrow{dictionary}%
|
||||||
\DTLnewdbentry{dictionary}{word}{#1}%
|
\DTLnewdbentry{dictionary}{word}{#1}%
|
||||||
|
@ -16,6 +25,6 @@
|
||||||
\DTLsort{word}{dictionary}%
|
\DTLsort{word}{dictionary}%
|
||||||
\scriptsize%
|
\scriptsize%
|
||||||
\DTLforeach*{dictionary}{\word=word,\translation=translation}{%
|
\DTLforeach*{dictionary}{\word=word,\translation=translation}{%
|
||||||
\selectlanguage{vietnamese}\textbf{\word:} \selectlanguage{naustrian}\translation\\}%
|
\selectlanguage{\@dictionary@primary}\textbf{\word:} \selectlanguage{\@dictionary@secondary}\translation\\}%
|
||||||
\selectlanguage{vietnamese}%
|
\selectlanguage{\@dictionary@primary}%
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue