Combine LaTeX docs into a single PDF
Project description
This tool automates compiling LaTeX document collections (for working papers, proceedings, etc.) into a single combined PDF file using the pdfpages package.
Create an INI file giving the name and parts of your collection and build it with the latexpages command-line utility.
latexpages will start one parallel typesetting process per core for speedup.
As each part is typeset independently, this allows to combine documents that cannot be merged into a single master-document (use of incompatible packages/options, latex-dvips-ps2pdf vs. pdflatex, etc.).
Links
Issue Tracker: http://github.com/xflr6/latexpages/issues
Installation
This package runs under Python 2.7 and 3.3+, use pip to install:
$ pip install latexpages
The compilation requires a TeX distribution (e.g. TeX Live or MikTeX) and either latexmk or MikTeX’s texify utility being available on your system.
The optional automatic page numbering (see below) requires either the pdfinfo command-line utility (included in poppler-utils, miktex-poppler-bin, xpdf), or the pdftk command-line utility (both available cross-platform).
Usage
Create a working directory holding your plain-text INI file with the latexpages configuration. Put all your documents into subdirectories with the same name as the corresponding .tex file:
collection/ latexpages.ini article1/ article1.tex references.bib article2/ article2.tex ...
Note: the directory names cannot contain spaces.
Edit the INI file to configure the parts, their order and various other options:
[make]
name = MY_COLL
directory = _output
[parts]
mainmatter =
article1
article2
The following will typeset all parts, copy their PDFs to the output directory, and combine them into a single PDF. By default, this also creates a 2-up version:
$ latexpages latexpages.ini
Check the example directory in the source distribution for a working complete example.
Invocation
Check the usage of the latexpages command:
$ latexpages --help
usage: latexpages [-h] [--version] [-c {latexmk,texify}] [--keep]
[--only <part>] [--processes <n>]
[filename]
Compiles and combines LaTeX docs into a single PDF file
positional arguments:
filename INI file configuring the parts and output options
(default: latexpages.ini in the current directory)
optional arguments:
-h, --help show this help message and exit
--version show program's version number and exit
-c {latexmk,texify} use latexmk.pl or texify (default: guess from platform)
--keep keep combination document(s) and their auxiliary files
--only <part> compile the given part without combining
--processes <n> number of parallel processes (default: one per core)
Pagination
The following command goes trough all main documents and updates the page number in the first \setcounter{page}{<number>} line of the source according to the page count of the preceding documents’ compiled PDFs.
$ latexpages-paginate latexpages.ini
Make sure either the pdfinfo command-line tool (poppler/xpdf) or the pdftk executable from pdftk is available on your systems’ path.
To use a different pattern for finding the \setcounter lines, set the update option in the paginate section of your INI file to a suitable regular expression.
[paginate]
update = \\setcounter\{page\}\{(\d+)\}
To also update the page numbers in your table of contents, put the corresponding part name in the paginate section of your INI file.
Directory structure:
collection/ latexpages.ini prelims/ prelims.tex article1/ article1.tex ...
Configuration:
[parts]
frontmatter =
prelims
mainmatter =
article1
article2
[paginate]
contents = prelims
By default, latexpages-paginate will search and update \startpage{<number>} lines in the source. To use this as marker, define and use a corresponding LaTeX-command in your table of contents, e.g. \newcommand{\startpage}[1]{#1}. A complete example is in the example directory
To use a different pattern for finding the table of contents lines, change the regular expression in the replace option.
[paginate]
replace = \\startpage\{(\d+)\}
Check the usage of the latexpages-paginate command:
$ latexpages-paginate --help
usage: latexpages-paginate [-h] [--version] [filename]
Computes and updates start page numbers in compiled parts and contents
positional arguments:
filename INI file configuring the parts and paginate options
(default: latexpages.ini in the current directory)
optional arguments:
-h, --help show this help message and exit
--version show program's version number and exit
Advanced options
Below are annotated INI file sections showing the default options for all available configuration settings.
The make section sets the names and file name templates for the results:
[make]
name = COLL # name of the resulting PDF file
directory = _output # directory to copy/put the results
two_up = __%(name)s_2up # name of the 2-up version PDF file
make_two_up = true # create a 2-up version (yes/no)
# templates for the name of the copied part PDF files for each
# of the three possible groups (frontmatter, mainmatter, extras)
# available substitutions:
# (note that the percent-sign must be doubled here)
# %%(name)s name of the result file (see above)
# %%(part)s name of the part directory/filename
# %%(index0)d zero-based index inside group
# %%(index1)d one-based index inside group
frontmatter = _%%(name)s_%%(part)s
mainmatter = %%(name)s_%%(index1)02d_%%(part)s
extras = %(frontmatter)s
The parts section gives space-delimited lists of parts to compile and/or include:
[parts]
frontmatter = # include at the beginning, roman page numbering
mainmatter = # include after frontmatter, arabic page numbering
extras = # compile and copy only (e.g. a separate cover page)
use_dvips = # use latex -> dvips -> ps2pdf for these parts
# instead of pdflatex (e.g. pstricks usage)
# pull the first mainmatter part into the roman page numbering area
first_to_front = false
The substitute section fills the template that is used to create the combination document. With the default template, this allows to set the PDF meta data:
[substitute]
# options for \usepackage{hyperref}
author = # pdfauthor
title = # pdftitle
subject = # pdfsubject
keywords = # pdfkeywords
The template section allows to customize the details of the combination document:
[template]
filename = # use a custom template
filename_two_up = # different template for 2-up version
class = scrartcl # use this documentclass
# documentclass options for combination and 2-up version
options = paper=a5
options_two_up = paper=a4,landscape
# includepdfmerge options for combination and 2-up version
include = fitpaper
include_two_up = nup=2x1,openright
The compile section allows to change the invocation options of the compilation commands used.
[compile]
latexmk = -silent # less verbose
texify = --batch --verbose --quiet # halt on error, less verbose
# only used with texify (latexmk calls these automatically)
dvips = -q
ps2pdf =
Finally, the paginate section controls latexpages-paginate (see above).
[paginate]
update = \\setcounter\{page\}\{(\d+)\} # search/update regex
contents = # part with table of contents
replace = \\startpage\{(\d+)\} # toc line search/update regex
See also
License
latexpages is distributed under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file latexpages-0.6.1.zip
.
File metadata
- Download URL: latexpages-0.6.1.zip
- Upload date:
- Size: 34.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 905ee2c89e9e70c83133ba2b93ed1a67a48a9626e352ced5a909aa13322a9ad9 |
|
MD5 | 5b9cdf066e74942df84c246fbd17be31 |
|
BLAKE2b-256 | e450925f0fa410f55161d164ef9ef8fac62ce3815c962c66dc8fb4cd4f9773a2 |
File details
Details for the file latexpages-0.6.1-py2.py3-none-any.whl
.
File metadata
- Download URL: latexpages-0.6.1-py2.py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3e26c81cbe702fd194d816437d14834f6d5c730b50cba162d0cb5c17838df25 |
|
MD5 | 62a93f99c084d1bf06a5c54e429595dd |
|
BLAKE2b-256 | 973dbd1c3ec16e3519b68a90e6ee73120c505b5381f382fbc31b664c401fe9cb |