11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.35 2002/08/06 09:56:54 geraint
## Updated to work with changes in unstable version of Octave 2.1.36.
## Tested with 2.0.17 (ok) but will break earlier unstables (2.1.(<=35)).
##
## Revision 1.34 2002/05/08 14:51:03 geraint
## Moved matlab/octave data type conversion functions to a separate file.
##
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.36 2002/08/28 15:48:00 geraint
## Updated mttrc to make standalone C++ compilation configuration clearer.
##
## Revision 1.35 2002/08/06 09:56:54 geraint
## Updated to work with changes in unstable version of Octave 2.1.36.
## Tested with 2.0.17 (ok) but will break earlier unstables (2.1.(<=35)).
##
## Revision 1.34 2002/05/08 14:51:03 geraint
## Moved matlab/octave data type conversion functions to a separate file.
##
|
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
# Setup ps viewer
export PSVIEW='gv'
# Setup pdf viewer
export PDFVIEW='acroread'
# Setup html viewer
export HTMLVIEW='netscape'
# Setup dvi viewer
export DVIVIEW='xdvi'
# Setup latex2html
export LATEX2HTML="latex2html -contents_in_navigation -index_in_navigation -address http://mtt.sourceforge.net"
|
|
|
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
# Setup ps viewer
export PSVIEW='gv'
# Setup pdf viewer
export PDFVIEW='acroread'
# Setup html viewer
export HTMLVIEW='mozilla'
# Setup dvi viewer
export DVIVIEW='xdvi'
# Setup latex2html
export LATEX2HTML="latex2html -contents_in_navigation -index_in_navigation -address http://mtt.sourceforge.net"
|