1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef GREEK__H
#define GREEK__H
/*
** tr2latex - troff to LaTeX converter
** COPYRIGHT (C) 1987 Kamal Al-Yahya, 1991,1992 Christian Engel
**
** Module: greek.h
**
** This file contains the list of the upper-case Greek letters.
** In case I overlooked any, it can be added here.
*/
const char *GRK_list[] =
{
"ALPHA", "BETA", "CHI", "DELTA", "EPSILON",
"ETA", "GAMMA", "KAPPA", "LAMDA", "MU",
"NU", "OMEGA", "PHI", "PI", "PSI",
"RHO", "SIGMA", "TAU", "THETA", "UPSILON",
"XI", "ZETA"
};
#endif
|