File: src2latex2dvi

package info (click to toggle)
src2tex 2.12h-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,136 kB
  • sloc: ansic: 5,679; sh: 405; makefile: 95; lisp: 46; sed: 39
file content (149 lines) | stat: -rwxr-xr-x 3,444 bytes parent folder | download | duplicates (5)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#! /bin/sh

#{\hrulefill\ {\tt\#}
#	\vskip 1ex
#	\input ../fonts.tex % define fonts
#	\input ../title.tex % title and authors
#	\vskip 1ex
# \noindent{\tt\#}\ \hrulefill\ {\tt\#}}


#{\hrulefill\ src2latex2dvi\ \hrulefill\ {\tt\#}
# \par\vskip 1ex
# \centerline{\tt src2latex2dvi [-pagelength <n>] {\sl filenames}}
# \par\vskip 1ex
# It is necessary for {\sl src2latex2dvi\/}
# that the following softwares are installed properly:
# \par
# {\sl\qquad nkf\ ,\ \ src2latex\ ,\ \ jlatex\ .}
# \par
# \noindent {\sl Src2latex2dvi\/} is just written
# by \ K. Amano \ for his private use.
# Here Kanji converter {\sl nkf\/} would be unnecessary
# if you are not Japanese.
# If you are a {\TeX} user,
# you have to replace ``{\tt latex}`` with ``{\tt tex}``.
# If {\tt jtex} and {\tt jlatex} are not installed at your site
# and if you are a Japanese install them
# else replace them with {\tt tex} and {\tt latex} respectively.
# \par
# \noindent{\tt\#}\ \hrulefill\ {\tt\#}}


#{\hrulefill\ Preliminaries\ \hrulefill\ {\tt\#}
# \par
# Though {\sl src2latex\/} accepts only one single filename,
# {\sl src2latex2dvi} allows to input multiple filenames
# by virtue of the first\  `` {\tt for $\cdots$} ''\ statement.
# There is an option related to number of lines printed in each logical page
# \par
# {\tt -pagelength}\ \ $n$
# \par\noindent
# Here we also make a carbon copy of tilde file
# \ {\sl filename}{\~\ }
# which is created by Emacs, Mule or something like that.
# \par
# \noindent{\tt\#}\ \hrulefill\ {\tt\#}}

if
	test $# = 0
then
	echo "Usage: src2latex2dvi [-pagelength <n>] filenames"
fi

src2tex_option=""
if
	test "$1" = "-pagelength" -o "$1" = "-p"
then
	shift
	src2tex_option="-$1"
	shift
fi

for i in $*
do

if
	test -f $i~
then
	mv $i~ $i.bak
fi

#{\hrulefill\ Any Kanji $\Rightarrow$ EUC Kanji\ \hrulefill\ {\tt\#}
# \par
# This conversion is necessary since {\sl src2latex\/} works
# only for EUC codes.
# If you don't use Japanese, you can skip this procedure.
# \par
# \noindent{\tt\#}\ \hrulefill\ {\tt\#}}

if
	test -f $i
then
	mv $i $i~
	nkf -e $i~ > $i
fi

#{\hrulefill\ Source File $\Rightarrow$ LaTeX file\ \hrulefill\ {\tt\#}
# \par
# This block is actually the main part of {\sl src2latex2dvi\/}.
# Given source files are translated into {\TeX} here.
# \par
# \noindent{\tt\#}\ \hrulefill\ {\tt\#}}

if
	test -f $i
then
	echo "src2latex" $src2tex_option $i
	src2latex $src2tex_option $i
fi
if
	test -f $i~
then
	mv $i~ $i
fi

#{\hrulefill\ EUC Kanji $\Rightarrow$ JIS Kanji\ \hrulefill\ {\tt\#}
# \par
# The official Kanji is JIS Kanji at the author's site.
# So, he has applied {\tt nkf}, with {\ \tt -j] } option,
# to {\TeX} file generated by {\sl src2latex\/}.
# And also, if there exits an input file
# it is included at the beginning of {\TeX} file.
# \par
# \noindent{\tt\#}\ \hrulefill\ {\tt\#}}

if
	test -f $i.tex
then
	if
		test -f $i.input
	then
		mv $i.tex $i.tex~
		nkf -j $i.input > $i.tex
		nkf -j $i.tex~ >> $i.tex
	else
		mv $i.tex $i.tex~
		nkf -j $i.tex~ > $i.tex
	fi
fi

#{\hrulefill\ TeX file $\Rightarrow$ DVI file\ \hrulefill\ {\tt\#}
# \par
# If {\tt jlatex} is not installed, then replace it with {\tt latex}.
# We remove several intermediate files at the last stage.
# \par
# \noindent{\tt\#}\ \hrulefill\ {\tt\#}}

if
	test -f $i.tex
then
#	jtex $i.tex
	jlatex $i.tex
#	rm $i.tex >/dev/null 2>&1
	rm $i.tex~ >/dev/null 2>&1
	rm $i.aux >/dev/null 2>&1
	rm $i.log >/dev/null 2>&1
fi

done