diff options
Diffstat (limited to 'ast/doincludes')
-rwxr-xr-x | ast/doincludes | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/ast/doincludes b/ast/doincludes deleted file mode 100755 index 656b0ac..0000000 --- a/ast/doincludes +++ /dev/null @@ -1,22 +0,0 @@ -#! /usr/bin/env perl - -# Reads a Latex file which contains \include{file} commands and writes -# the document to standard output with the text of the included files -# inserted. - -# Read input lines. - while ( <> ) { - -# Spot the \include{file} lines and extract the file name. - if ( ( $file ) = /^ *\\include{(.*)} *$/ ) { - -# Read the contents of the included file. - open( INCLUDE, $file . ".tex" ); - while ( <INCLUDE> ) { print; } - close( INCLUDE ); - -# Output other lines unchanged. - } else { - print; - } - } |