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
|
/* ptexhelp.h: for the --help option"
*/
#ifndef PTEXHELP_H
#define PTEXHELP_H
#define HELP_H
#ifdef TeX
/* ptexextra.h */
#undef TEXPOOLNAME
#define TEXPOOLNAME "ptex.pool"
#endif /* TeX */
#ifdef TFTOPL
string based_prog_name = "TFtoPL";
const_string PTEXTFTOPLHELP[] = {
"Usage: tftopl [option] tfmfile [plfile]",
"",
" -verbose output progress reports.",
" -version print version information and exit.",
" -help print this message and exit.",
" -kanji={jis|euc|sjis} plfile kanji code.",
NULL };
#endif /* TFTOPL */
#ifdef PLTOTF
string based_prog_name = "PLtoTF";
const_string PTEXPLTOTFHELP[] = {
"Usage: pltotf [option] plfile [tfmfile]",
"",
" -verbose output progress reports.",
" -version print version information and exit.",
" -help print this message and exit.",
" -kanji={jis|euc|sjis} plfile kanji code.",
NULL };
#endif /* PLTOTF */
#ifdef BIBTEX
string based_prog_name = "BibTeX";
const_string JBIBTEXHELP[] = {
"Usage: jbibtex [option] auxfile",
"",
" -min-crossrefs=INTEGER minimum number of cross-refs required",
" for automatic cite_list inclusion (default 2).",
" -terse do silently.",
" -version print version information and exit.",
" -help print this message and exit.",
" -kanji={jis|euc|sjis} kanji code for output-file.",
NULL };
#endif /* BIBTEX */
#ifdef DVITYPE
string based_prog_name = "DVItype";
const_string PDVITYPEHELP[] = {
"Usage: pdvitype [option] dvifile",
"",
" -dpi=REAL assumed device resolution in pixels per inch",
" (default 300.0).",
" -magnification=INTEGER overrride the postamble's magnification.",
" -max-pages=INTEGER maximum number of pages (default 1000000).",
" -output-level=1..4 verbosity level.",
" 1: terse, 2: medium-level, 3: verbose,",
" 4: plus check for postamble(default).",
" -page-start=PAGE type, e.g., `1.*.-5' to specify the first page",
" with \\count0=1, \\count2=4.",
" (see the TeX book chapter 15).",
" -show-opcodes show opcodes in dicimal.",
" -version print version information and exit.",
" -help print this message and exit.",
NULL };
#endif /* DVITYPE */
#endif /* PTEXHELP_H */
|