summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/glosmathtools/sample_glosmathtools_glos.tex
blob: 62c2386dd0649cea278526b4d052bfdca7392687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
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={transformation de Laplace},%
		parent=abbrv%
	]{TL}{TL}{Laplace transform}
}%