blob: 7a1223569b0c79a71246ca0d7cc27cf9f0f7dcd2 (
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
|
%% The cslatex ini file
%% use:
%% tex -ini cslatex.ini
%% or (for example):
%% tex -ini \let\enc=w \input cslatex.ini
%% see the csplain.doc in csplain.tar/zip for more details
\ifx\enc\undefined \else %% Reencoding by encTeX is needed
\begingroup
\catcode`\{=1 \catcode`\}=2 \catcode`\#=6 \catcode`^=7
\globaldefs=1 \input csenc-\enc.tex % changed in Sep. 2005
\global\let\orieveryjob=\everyjob
\gdef\everyjob#1{\let\everyjob=\orieveryjob
\let\orieveryjob=\undefined
\everyjob=\expandafter{\the\everyjob #1}}
\endgroup
\fi
\ifx\xprncode\undefined \else %% The encTeX is detected
\begingroup
\catcode`\{=1 \catcode`\}=2
\count255=128
\def\next{\xprncode\count255=1 \advance\count255 by 1
\ifnum \count255>255 \let\next=\relax \fi \next}
\next
\endgroup
% \let\enc=\undefined \let\setinputchr=\undefined
% \let\xordcode=\undefined \let\xchrcode=\undefined \let\xprncode=\undefined
\fi
\ifx\pdfoutput\undefined \else % added in Feb. 2005
\catcode`\{=1 \catcode`\}=2
\def\tmpa{\pdfcslatex}
\expandafter\def\expandafter\tmpb\expandafter{\csname\jobname\endcsname}
\ifx\tmpa\tmpb %% PDFTeX with PDF output
\message {jobname=pdfcslatex, PDF output initialised.}
\openin0=pdftexconfig.tex
\ifeof0 \message{WARNING: pdftexconfig.tex does not exist.
I set \string\pdfoutput=1 only.}%
\else \closein0 \input pdftexconfig.tex
\fi
\pdfoutput=1
\else
\message {jobname=cslatex with pdftex, DVI output initialised.}
\pdfoutput=0
\let\oripdfoutput=\pdfoutput \let\pdfoutput=\undefined
\fi
\let\tmpa=\undefined \let\tmpb=\undefined
\catcode`\{=12
\fi
\input latex.ltx
|