1826
|
1 |
/*
|
|
2 |
* Definitions for the isabelle converster
|
|
3 |
*/
|
|
4 |
|
|
5 |
#define TRUE 1
|
|
6 |
#define FALSE 0
|
|
7 |
#define TAB 0x09
|
|
8 |
|
|
9 |
/*
|
|
10 |
* Destination codes for translation; used for variable destCode
|
|
11 |
*/
|
|
12 |
|
|
13 |
#define TO_7bit 0
|
|
14 |
#define TO_LaTeX 1
|
|
15 |
#define DEFAULT_DEST TO_LaTeX
|
|
16 |
|
|
17 |
/*
|
|
18 |
* Conversion modes: used for variable convMode
|
|
19 |
*/
|
|
20 |
|
|
21 |
#define INCLUDE 1
|
|
22 |
#define STANDALONE 2
|
|
23 |
#define MIXED 3
|
|
24 |
#define DEFAULT_MODE INCLUDE
|
|
25 |
|
|
26 |
|
|
27 |
/*
|
|
28 |
* Number of tab positions in tabbing environment (see file isa2latex.sty)
|
|
29 |
*/
|
|
30 |
#define NUM_TABS 12
|
|
31 |
|
|
32 |
/*
|
|
33 |
* character for tab definitions in LaTeX:
|
|
34 |
*/
|
|
35 |
#define NORMAL_TABBING_UNIT "x"
|
|
36 |
#define BIG_TABBING_UNIT "g"
|
|
37 |
|
|
38 |
/*
|
|
39 |
* units for tab used in tab calculations:
|
|
40 |
*/
|
|
41 |
#define TABBLANKS 8
|
|
42 |
/*
|
|
43 |
do not change below, the following definitions are automatically
|
|
44 |
configured by the perl script gen-isa2latex
|
|
45 |
*/
|
|
46 |
|
|
47 |
/*
|
|
48 |
* Start and end index of translation tables
|
|
49 |
* LOW: ASCII characters with bit 8 unset
|
|
50 |
* HI: ASCII characters with bit 8 set
|
|
51 |
* SEQ_TABLE: length of code table for long ASCII sequences
|
|
52 |
*/
|
|
53 |
|
|
54 |
/* BEGIN gen-isa2latex */
|
|
55 |
#define START_LOW_TABLE 32
|
|
56 |
#define END_LOW_TABLE 126
|
4170
|
57 |
#define START_HI_TABLE 160
|
1826
|
58 |
#define END_HI_TABLE 255
|
5675
|
59 |
#define SEQ_TABLE 29
|
1826
|
60 |
/* END gen-isa2latex */
|
|
61 |
|