summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc')
-rw-r--r--Master/texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc20
1 files changed, 20 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc b/Master/texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc
new file mode 100644
index 00000000000..5a0a088c61b
--- /dev/null
+++ b/Master/texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc
@@ -0,0 +1,20 @@
+# This shows how to use lualatex (http://en.wikipedia.org/wiki/XeTeX)
+# with latexmk. Lualatex uses Unicode and "supporting modern font
+# technologies such as OpenType or Apple Advanced Typography.
+#
+# WARNING: latexmk.pl is changing, and plans to have more internal
+# support for lualatex.
+#
+# Since lualatex only produces pdf files, it is a replacement for
+# pdflatex. To make it your default typesetting engine within latexmk
+# you will not only need to set the $pdflatex variable to require the
+# use of lualatex, but also to turn on production of pdf files and to
+# turn off the production of dvi and ps files, as in the following
+# code:
+
+
+$pdflatex = 'lualatex %O %S';
+$pdf_mode = 1;
+$postscript_mode = $dvi_mode = 0;
+
+