Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bc3b1c6f
Commit
bc3b1c6f
authored
Jan 13, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Script to add & remove LaTeX \documentclass options. Run "./texoption.sh"
for usage information.
parent
ab0b65d0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
95 additions
and
0 deletions
+95
-0
Doc/texoption.sh
Doc/texoption.sh
+95
-0
No files found.
Doc/texoption.sh
0 → 100755
View file @
bc3b1c6f
#! /bin/sh
#
# Script to convert LaTeX2e documents to & from having a \documentclass{}
# option.
VERBOSE
=
false
SETOPTION
=
true
FILES
=
`
echo
???.tex
`
usage
()
{
exec
>
&2
echo
"usage:
$0
[-d] [-v] option [files...]"
echo
echo
"
\t
-d disable option, if present"
echo
"
\t
-v tell which files are being edited, and how"
echo
echo
"
\t
By default, files... will be '???.tex'."
echo
"
\t
This will match each of the Python manuals."
echo
exit
2
}
editing
()
{
# tell the user what we're doing
if
$VERBOSE
;
then
echo
$1
$FILE
...
fi
}
addoption
()
{
# add an option not already present
editing
"adding to"
(
sed
's/^\(\\documentclass[[].*\)]/\1,'
$OPTION
']/
s/^\\documentclass{/\\documentclass['
$OPTION
']{/'
$FILE
>
temp-
$$
\
&&
mv
temp-
$$
$FILE
)
||
exit
$?
}
remoption
()
{
# remove an option currently on
editing
"removing from"
(
sed
's/^\(\\documentclass[[].*\),'
$OPTION
'\([],]\)/\1\2/
s/^\\documentclass[[]'
$OPTION
']/\\documentclass{/
s/^\\documentclass[[]'
$OPTION
',/\\documentclass[/'
$FILE
>
temp-
$$
\
&&
mv
temp-
$$
$FILE
)
||
exit
$?
}
chkoption
()
{
# return true iff the option is already on
egrep
'^\\documentclass[[]([A-Za-z0-9]*,)*'
$OPTION
'[],]'
$FILE
>
/dev/null
return
$?
}
# parse the command line...
while
[
"$#"
-gt
0
]
;
do
case
"
$1
"
in
-d
)
SETOPTION
=
false
shift
;;
-v
)
VERBOSE
=
true
shift
;;
-
*
)
usage
;;
*
)
break
;
;;
esac
done
if
[
-z
"
$1
"
]
;
then
usage
fi
# setup variables
OPTION
=
"
$1
"
shift
FILES
=
${
1
:+
$*
}
if
[
"
$FILES
"
=
''
]
;
then
FILES
=
`
echo
???.tex
`
fi
# check each file and do the work as required
for
FILE
in
$FILES
;
do
if
chkoption
;
then
if
$SETOPTION
;
then
:
else
remoption
fi
elif
$SETOPTION
;
then
addoption
fi
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment