summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/glosmathtools/sample_glosmathtools_glos.tex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /macros/latex/contrib/glosmathtools/sample_glosmathtools_glos.tex
Initial commit
Diffstat (limited to 'macros/latex/contrib/glosmathtools/sample_glosmathtools_glos.tex')
-rw-r--r--macros/latex/contrib/glosmathtools/sample_glosmathtools_glos.tex162
1 files changed, 162 insertions, 0 deletions
diff --git a/macros/latex/contrib/glosmathtools/sample_glosmathtools_glos.tex b/macros/latex/contrib/glosmathtools/sample_glosmathtools_glos.tex
new file mode 100644
index 0000000000..edab2bc8f9
--- /dev/null
+++ b/macros/latex/contrib/glosmathtools/sample_glosmathtools_glos.tex
@@ -0,0 +1,162 @@
+% !TeX encoding = UTF-8
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% Glossary entry definitions
+%% - symbol : units or dimension (for matrices)
+%% - descseclang : second language description for bilangual nomennclature
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% ==================================================================
+% ======================= MATH SYMBOLS =============================
+% ==================================================================
+
+% ----------------------- LATIN SYMBOLS ----------------------------
+\newglossaryentry{latin}{name={latin},
+ description={Latin symbols},descseclang={Symboles latins},sort=1}
+{%
+ \newglosentrymath{k}{k}{
+ description={discrete time},
+ descseclang={temps discret},
+ sort=k,
+ parent=latin,
+ }
+ \newglosentrymath{T}{T}{
+ description={temperature},
+ symbol=\si{\kelvin},
+ descseclang={température},
+ sort=T,
+ parent=latin,
+ }
+ \newglosentrymath{z}{z}{
+ description={height},
+ symbol=\si{\meter},
+ descseclang={hauteur},
+ sort=z,
+ parent=latin,
+ }
+ \newglosentrymath{d}{d}{
+ description={diameter},
+ symbol=\si{\meter},
+ descseclang={diamètre},
+ sort=d,
+ parent=latin,
+ }
+ \newglosentrymath{D}{D}{
+ description={molecular diffusion coefficient},
+ symbol=\si{\meter\squared\per\second},
+ descseclang={coefficient de diffusion moléculaire},
+ sort=D,
+ parent=latin,
+ }
+ \newglosentrymath{m}{m}{
+ description={mass},
+ symbol=\si{\kilogram},
+ descseclang={masse},
+ sort=m,
+ parent=latin,
+ }
+}%
+
+% ---------------------- GREEK SYMBOLS -----------------------------
+\newglossaryentry{greek}{name={greek},
+ description={Greek symbols},descseclang={Symboles grecs},sort=2}
+{%
+ \newglosentrymath{rho}{\rho}{
+ description={density},
+ symbol=\si{\kilogram\per\meter\cubed},
+ descseclang={masse volumique},
+ sort=17, % rho : 17th letter in greek alphabet
+ parent=greek,
+ }
+ \newglosentrymath{mu}{\mu}{
+ description={dynamic viscosity},
+ symbol=\si{\kilogram\per\meter\per\second},
+ descseclang={viscosité dynamique},
+ sort=12, % mu : 12th letter in greek alphabet
+ parent=greek,
+ }
+}%
+
+
+% ---------------------- VECTORS AND MATRICES ----------------------
+\newglossaryentry{vecMat}{name={vecMat},
+ description={Vectors and matrices},descseclang={Vecteurs et matrices},sort=3}
+{%
+ \newglosentrymath{mat.b}{\mathbf{b}}{
+ description={vector},
+ symbol=$(2 \times 1)$,
+ descseclang={vecteur},
+ sort=b,
+ parent=vecMat,
+ }
+ \newglosentrymath{mat.A}{\mathbf{A}}{
+ description={matrix},
+ symbol=$(2 \times 2)$,
+ descseclang={matrice},
+ sort=A,
+ parent=vecMat,
+ }
+}%
+
+% ---------------------- SUBSCRIPTS --------------------------------
+\newglossaryentry{subscript}{name={subscript},
+ description={Subscripts},descseclang={Indices},sort=4}
+{%
+ \newglosentrymath{sub.w}{\mathrm{w}}{
+ description={water},
+ descseclang={eau},
+ parent=subscript
+ }
+ \newglosentrymath{sub.a}{\mathrm{a}}{
+ description={air},
+ descseclang={air},
+ parent=subscript
+ }
+ \newglosentrymath{sub.v}{\mathrm{v}}{
+ description={vessel},
+ descseclang={réservoir},
+ parent=subscript
+ }
+}%
+
+
+% ---------------------- OPERATORS --------------------------------
+\newglossaryentry{operator}{name={operator},
+ description={Operators},descseclang={Opérateurs},sort=5}
+{%
+ \newglosentrymath{op.dot}{\dot{\bullet}}{
+ description={flow rate of $\bullet$},
+ descseclang={débit de $\bullet$},
+ symbol=\si{\per\second},
+ sort=01,
+ parent=operator
+ }
+ \newglosentrymath{op.bar}{\bar{\bullet}}{
+ description={average of $\bullet$},
+ descseclang={moyenne de $\bullet$},
+ sort=02,
+ parent=operator
+ }
+ \newglosentrymath{op.comma}{\bullet,\!\circ}{
+ description={in subscript : from $\bullet$ to $\circ$},
+ descseclang={en indice : de $\bullet$ vers $\circ$},
+ sort=03,
+ parent=operator
+ }
+}%
+
+% ==================================================================
+% ========================= ACRONYMS ===============================
+% ==================================================================
+
+\newglossaryentry{abbrv}{name={abbrv},
+ description={Abbreviations},descseclang={Abréviations},sort=6}
+{%
+ \newacronym[%
+ descseclang={équation différentielle ordinaire},%
+ parent=abbrv%
+ ]{ODE}{ODE}{ordinary differential equation}
+ \newacronym[%
+ descseclang={laboratoire d'observation et d'optimisation des procédés},%
+ parent=abbrv%
+ ]{LOOP}{LOOP}{process observation and optimization laboratory}
+}% \ No newline at end of file