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
|
#ifndef SIMIL__H
#define SIMIL__H
/*
** tr2latex - troff to LaTeX converter
** COPYRIGHT (C) 1987 Kamal Al-Yahya, 1991,1992 Christian Engel
**
** Module: simil.h
**
** This file contains a list of math words that are similar in the
** two languages (in fact identical except for TeX's backslah).
** If I overlooked anything out, it can be put here
** Do NOT put here words that are similar but require some action (like over)
*/
const char *sim_list[] =
{
"alpha", "approx", "beta", "cdot", "chi", "cos",
"cosh", "cot", "coth", "delta", "det", "epsilon",
"eta", "exp", "gamma", "int", "iota", "kappa",
"lambda", "lim", "ln", "log", "matrix", "max",
"min", "mu", "nu", "omega", "partial", "phi",
"pi", "prime", "prod", "psi", "rho", "sigma",
"sin", "sinh", "sqrt", "sum", "tan", "tanh",
"tau", "theta", "times", "upsilon", "xi", "zeta"
};
#endif
|