repo.or.cz
/
isl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add ast_node_mark
[isl.git]
/
doc
/
mypod2latex
blob
b11c0593d01544b000bb999775c1af0a33609f90
1
#!/usr/bin/perl
2
3
use
strict
;
4
use
Pod
::
LaTeX
;
5
6
my
(
$in
,
$out
) =
@ARGV
;
7
8
my
$parser
=
new Pod
::
LaTeX
(
9
AddPreamble
=>
0
,
10
AddPostamble
=>
0
,
11
LevelNoNum
=>
5
,
12
);
13
14
$parser
->
parse_from_file
(
$in
,
$out
);