summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/man
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-06-27 21:56:44 +0000
committerKarl Berry <karl@freefriends.org>2017-06-27 21:56:44 +0000
commit5ac5cca5eec65f2b492169f01406f6954c244142 (patch)
treee0c3b4c63216f807978b31b102a56c20063963ae /Master/texmf-dist/doc/man
parent6320e3d204852732e5510f2b0cdd5022fc541091 (diff)
texdirflatten (27jun17)
git-svn-id: svn://tug.org/texlive/trunk@44713 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/man')
-rw-r--r--Master/texmf-dist/doc/man/man1/texdirflatten.158
-rw-r--r--Master/texmf-dist/doc/man/man1/texdirflatten.man1.pdfbin4842 -> 8363 bytes
2 files changed, 40 insertions, 18 deletions
diff --git a/Master/texmf-dist/doc/man/man1/texdirflatten.1 b/Master/texmf-dist/doc/man/man1/texdirflatten.1
index 0da2a4fa74f..2e76412bfb9 100644
--- a/Master/texmf-dist/doc/man/man1/texdirflatten.1
+++ b/Master/texmf-dist/doc/man/man1/texdirflatten.1
@@ -1,4 +1,4 @@
-.\" Automatically generated by Pod::Man 2.1801 (Pod::Simple 3.05)
+.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.29)
.\"
.\" Standard preamble:
.\" ========================================================================
@@ -38,6 +38,8 @@
. ds PI \(*p
. ds L" ``
. ds R" ''
+. ds C`
+. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
@@ -48,17 +50,24 @@
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
-.ie \nF \{\
-. de IX
-. tm Index:\\$1\t\\n%\t"\\$2"
+.\"
+.\" Avoid warning from groff about undefined register 'F'.
+.de IX
..
-. nr % 0
-. rr F
-.\}
-.el \{\
-. de IX
+.nr rF 0
+.if \n(.g .if rF .nr rF 1
+.if (\n(rF:(\n(.g==0)) \{
+. if \nF \{
+. de IX
+. tm Index:\\$1\t\\n%\t"\\$2"
..
+. if !\nF==2 \{
+. nr % 0
+. nr F 2
+. \}
+. \}
.\}
+.rr rF
.\"
.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
.\" Fear. Run. Save yourself. No user-serviceable parts.
@@ -124,17 +133,17 @@
.\" ========================================================================
.\"
.IX Title "TEXDIRFLATTEN 1"
-.TH TEXDIRFLATTEN 1 "2009-04-17" "perl v5.10.0" "User Contributed Perl Documentation"
+.TH TEXDIRFLATTEN 1 "2017-06-26" "perl v5.22.1" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
-\&\fBtexdirflatten\fR \- Collects all components of a (La)TeX file in a
-single output directory \*(-- i.e., flattens its hierarchy.
+texdirflatten \- Collects all components of a (La)TeX file in a
+single output directory \-\- i.e., flattens its hierarchy.
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
-texdirflatten \-f input.tex [\-o outputdir]
+texdirflatten [\-1|\-\-onetex] [\-f|\-\-file input.tex] [\-o outputdir] [\-?|\-\-help]
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
It parses the source file, following its included children (La)TeX
@@ -142,14 +151,21 @@ files recursively, to collect together its components, such as
graphics and BiBTeX bibliography files in different directories.
.SH "OPTIONS"
.IX Header "OPTIONS"
-.IP "\fB\-f\fR \fIinput.tex\fR" 4
-.IX Item "-f input.tex"
+.IP "\fB\-\-file\fR, \fB\-f\fR \fIinput.tex\fR" 4
+.IX Item "--file, -f input.tex"
Specifies input (La)TeX file.
-.IP "\fB\-o\fR \fIoutputdir\fR" 4
-.IX Item "-o outputdir"
+.IP "\fB\-\-onetex\fR, \fB\-1\fR" 4
+.IX Item "--onetex, -1"
+If specified, produces a single TeX file by expanding all \einput and
+\&\einclude commands in place.
+.IP "\fB\-\-output\fR, \fB\-o\fR \fIoutputdir\fR" 4
+.IX Item "--output, -o outputdir"
Directory to collect all files. \fBtexdirflatten\fR will copy each source
file, graphics and bibliography file to this directory. It will be
created if it is unexistent. If unspecified, it defaults to \f(CW\*(C`flat/\*(C'\fR.
+.IP "\fB\-\-help\fR, \fB\-?\fR" 4
+.IX Item "--help, -?"
+Show this manual page.
.SH "EXAMPLES"
.IX Header "EXAMPLES"
The following example scans \f(CW\*(C`manuscript.tex\*(C'\fR in the current directory
@@ -162,6 +178,12 @@ and gathers it and all its components in the \f(CW\*(C`submit_01/\*(C'\fR direct
.IX Header "CAVEATS"
Please take backups before running this command. No warranties
whatsoever provided.
+.PP
+You may need to run \f(CW\*(C`epstopdf\*(C'\fR on \s-1EPS\s0 files if you are using \f(CW\*(C`pdflatex\*(C'\fR:
+.PP
+.Vb 1
+\& $ for i in *.eps; do epstopdf $i; done
+.Ve
.SH "BUGS"
.IX Header "BUGS"
Bug reports and patches are welcome.
@@ -170,7 +192,7 @@ Bug reports and patches are welcome.
Cengiz Gunay <cengique<\s-1AT\s0>users.sf.net>
.SH "COPYRIGHT AND LICENSE"
.IX Header "COPYRIGHT AND LICENSE"
-Copyleft 2003\-2009, Cengiz Gunay
+Copyleft 2003\-2017, Cengiz Gunay
.PP
This library is free software; you may redistribute it and/or modify
it under the same terms as Perl itself.
diff --git a/Master/texmf-dist/doc/man/man1/texdirflatten.man1.pdf b/Master/texmf-dist/doc/man/man1/texdirflatten.man1.pdf
index 69bea837ba7..3de3cfe1c13 100644
--- a/Master/texmf-dist/doc/man/man1/texdirflatten.man1.pdf
+++ b/Master/texmf-dist/doc/man/man1/texdirflatten.man1.pdf
Binary files differ