summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/latexmk/CHANGES
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-01-17 22:27:02 +0000
committerKarl Berry <karl@freefriends.org>2017-01-17 22:27:02 +0000
commit78ef96dc26db9e148bed61c4120e21ae8b034e4b (patch)
tree43c2e78fa86c7d94a698d1fd42b5355c01787646 /Master/texmf-dist/doc/support/latexmk/CHANGES
parentc8ec67e7148b3e55dcc223df363e08720fe43a32 (diff)
latexmk (17jan17)
git-svn-id: svn://tug.org/texlive/trunk@42982 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/support/latexmk/CHANGES')
-rw-r--r--Master/texmf-dist/doc/support/latexmk/CHANGES24
1 files changed, 24 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/support/latexmk/CHANGES b/Master/texmf-dist/doc/support/latexmk/CHANGES
index bc594251252..6d4af373faf 100644
--- a/Master/texmf-dist/doc/support/latexmk/CHANGES
+++ b/Master/texmf-dist/doc/support/latexmk/CHANGES
@@ -504,3 +504,27 @@ From v. 4.46 to 4.48
rdb_remove_files.
Update webpages in documentation.
+From v. 4.48 to 4.52
+ Optimize number of calls to kpsewhich. This often gives a
+ considerable savings of run time when a document includes many
+ graphics files that are in a texmf tree.
+ Fix bug that if an .aux file is deleted and latexmk is run, the
+ wrong number of runs of (pdf)latex was made.
+ Fix related problem that latexmk sometimes does too few runs of
+ (pdf)latex because of the incorrect detection that a file is only
+ read after being written.
+ Implement direct support for xelatex and lualatex. Previously these
+ programs were used by configuring the $pdflatex so that the desired
+ program is run instead of pdflatex. There are now configuration
+ variables $xelatex and $lualatex to specify the commands used, and
+ extra command line options -pdfxe and -pdflua.
+ In the case of xelatex, considerable improvement in run time is
+ given for documents containing large graphics files. This is
+ because compilation is made first to an xdv file instead of direct
+ to a pdf file. Only when this file is finalized is a single
+ conversion to a pdf file made. (This last step can be especially
+ time-consuming for documents that bring in large graphics files.)
+ Correct detection for missing graphics files with xelatex.
+ Work around LuaTeX line-wrapping bug.
+ Update documentation.
+ Minor improvements in code and diagnostics.