1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
|
LATEXMK(1L) LATEXMK(1L)
[1mNAME[0m
latexmk - generate LaTeX document
[1mSYNOPSIS[0m
[1mlatexmk [options] [file ...][0m
[1mDESCRIPTION[0m
[4mLatexmk[24m completely automates the process of compiling a LaTeX document.
Essentially, it is like a specialized relative of the general [4mmake[0m
utility, but one which determines dependencies automatically and has
some other very useful features. In its basic mode of operation
[4mlatexmk[24m is given the name of the primary source file for a document,
and it issues the appropriate sequence of commands to generate a .dvi,
.ps, .pdf and/or hardcopy version of the document.
[4mLatexmk[24m can also be set to run continuously with a suitable previewer.
In that case the LaTeX program, etc, are rerun whenever one of the
source files is modified, and the previewer automatically updates the
on-screen view of the compiled document.
[4mLatexmk[24m determines which are the source files by examining the log
file. When [4mlatexmk[24m is run, it examines properties of the source files,
and if any have been changed since the last document generation,
[4mlatexmk[24m will run the various LaTeX processing programs as necessary.
In particular, it will repeat the run of LaTeX (or pdflatex) often
enough to resolve all cross references; depending on the macro packages
used. With some macro packages and document classes, four, or even
more, runs may be needed. If necessary, [4mlatexmk[24m will also run bibtex
and/or makeindex. In addition, [4mlatexmk[24m can be configured to generate
other necessary files. For example, from an updated figure file it can
automatically generate a file in encapsulated postscript or another
suitable format for reading by LaTeX.
[4mLatexmk[24m has two different previewing options. In the simple [1m-pv[0m
option, a dvi, postscript or pdf previewer is automatically run after
generating the dvi, postscript or pdf version of the document. The
type of file to view is selected according to configuration settings
and command line options.
The second previewing option is the powerful [1m-pvc [22moption (mnemonic:
"preview continuously"). In this case, [4mlatexmk[24m runs continuously, reg-
ularly monitoring all the source files to see if any have changed.
Every time a change is detected, [4mlatexmk[24m runs all the programs neces-
sary to generate a new version of the document. A good previewer (like
[4mgv[24m) will then automatically update its display. Thus the user can sim-
ply edit a file and, when the changes are written to disk, [4mlatexmk[24m com-
pletely automates the cycle of updating the .dvi (and possibly the .ps
and .pdf) file, and refreshing the previewer's display. It's not quite
WYSIWYG, but usefully close.
For other previewers, the user may have to manually make the previewer
update its display, which can be (some versions of xdvi and gsview) as
simple as forcing a redraw of its display.
30 September 2008 1
LATEXMK(1L) LATEXMK(1L)
[4mLatexmk[24m has the ability to print a banner in gray diagonally across
each page when making the postscript file. It can also, if needed,
call an external program to do other postprocessing on the generated
files.
[4mLatexmk[24m is highly configurable, both from the command line and in con-
figuration files, so that it can accommodate a wide variety of user
needs and system configurations. Default values are set according to
the operating system, so [4mlatexmk[24m often works without special configura-
tion on MS-Windows, cygwin, Linux, OS-X, and other UNIX systems
(notably Solaris).
A very annoying complication handled very reliably by [4mLatexmk[24m, is that
LaTeX is a multiple pass system. On each run, LaTeX reads in informa-
tion generated on a previous run, for things like cross referencing and
indexing. In the simplest cases, a second run of LaTeX suffices, and
often the log file contains a message about the need for another pass.
However, there is a wide variety of add-on macro packages to LaTeX,
with a variety of behaviors. The result is to break simple-minded
determinations of how many runs are needed and of which programs. In
its new version, [4mlatexmk[24m has a highly general and efficient solution to
these issues. The solution involves retaining between runs information
on the source files, and a symptom is that [4mlatexmk[24m generates an extra
file (with extension .fdb_latexmk, by default) that contains the source
file information.
[1mLATEXMK OPTIONS AND ARGUMENTS ON COMMAND LINE[0m
(All options can be introduced by single or double "-" characters,
e.g., "latexmk -help" or "latexmk --help".)
[1mfile [22mOne or more files can be specified. If no files are specified,
[4mlatexmk[24m will, by default, run on all files in the current work-
ing directory with a ".tex" extension. This behavior can be
changed: see the description concerning the [4m@default_files[24m vari-
able in the section "List of configuration variables usable in
initialization files".
If a file is specified without an extension, then the ".tex" extension
is automatically added, just as LaTeX does. Thus, if you specify:
latexmk foo
then [4mlatexmk[24m will operate on the file "foo.tex".
[1m-bm <message>[0m
A banner message to print diagonally across each page when con-
verting the dvi file to postscript. The message must be a sin-
gle argument on the command line so be careful with quoting
spaces and such.
Note that if the [1m-bm [22moption is specified, the [1m-ps [22moption is
assumed.
30 September 2008 2
LATEXMK(1L) LATEXMK(1L)
[1m-bi <intensity>[0m
How dark to print the banner message. A decimal number between
0 and 1. 0 is black and 1 is white. The default is 0.95, which
is OK unless your toner cartridge is getting low.
[1m-bs <scale>[0m
A decimal number that specifies how large the banner message
will be printed. Experimentation is necessary to get the right
scale for your message, as a rule of thumb the scale should be
about equal to 1100 divided by the number of characters in the
message. The default is 220.0 which is just right for 5 charac-
ter messages.
[1m-commands[0m
List the commands used by [4mlatexmk[24m for processing files, and then
exit.
[1m-c [22mClean up (remove) all regeneratable files generated by [4mlatex[24m and
[4mbibtex[24m except dvi, postscript and pdf. These files are a combi-
nation of log files, aux files, and those with extensions speci-
fied in the [4m@generated_exts[24m configuration variable. In addi-
tion, files with extensions by the [4m$clean_ext[24m configuration
variable are removed. But the file containing a database of
source file information is not removed.
This cleanup is instead of a regular make. See the [1m-gg [22moption
if you want to do a cleanup then a make.
[1m-C [22mClean up (remove) all regeneratable files generated by [4mlatex[24m and
[4mbibtex[24m. This is the same as the [1m-c [22moption with the addition of
dvi, postscript and pdf files, and those with extensions in the
[4m$clean_full_ext[24m configuration variable.
This cleanup is instead of a regular make. See the [1m-gg [22moption
if you want to do a cleanup than a make.
[1m-CA [22mClean up (remove) absolutely all regeneratable files. This is
the action specified by [1m-C [22mwith the addition of deleting the
file containing the database of source file information.
This cleanup is instead of a regular make. It is the same as [1m-C[0m
[1m-CF[22m. See the [1m-gg [22moption if you want to do a cleanup then a
make.
[1m-CF [22mRemove the file containing the database of source file informa-
tion, before doing the other actions requested.
[1m-d [22mSet draft mode. This prints the banner message "DRAFT" across
your page when converting the dvi file to postscript. Size and
intensity can be modified with the [1m-bs [22mand [1m-bi [22moptions. The [1m-bm[0m
option will override this option as this is really just a short
way of specifying:
latexmk -bm DRAFT
30 September 2008 3
LATEXMK(1L) LATEXMK(1L)
Note that if the [1m-d [22moption is specified, the [1m-ps [22moption is
assumed.
[1m-dF [22mDvi file filtering. The argument to this option is a filter
which will generate a filtered dvi file with the extension
".dviF". All extra processing (e.g. conversion to postscript,
preview, printing) will then be performed on this filtered dvi
file.
Example usage: To use dviselect to select only the even pages of
the dvi file:
latexmk -dF 'dviselect even' foo.tex
[1m-diagnostics[0m
Print detailed diagnostics during a run. This may help for
debugging problems or to understand [4m.latexmk[24m's behavior in dif-
ficult situations.
[1m-dvi [22mGenerate dvi version of document.
[1m-dvi- [22mTurn off generation of dvi version of document. (This may get
overridden, if some other file is made (e.g., a .ps file) that
is generated from the dvi file, or if no generated file at all
is requested.)
[1m-e <code>[0m
Execute the specified initialization code before processing.
The code is [4mPerl[24m code of the same form as is used in [4mlatexmk[24m's
initialization files -- for more details, see the information on
the [1m-r [22moption, and the section about "Configuration/initializa-
tion (RC) files". The code is typically a sequence of assign-
ment statements separated by semicolons.
The code is executed when the [1m-e [22moption is encountered during
[4mlatexmk[24m's parsing of its command line. See the [1m-r [22moption for a
way of executing initialization code from a file. An error
results in [4mlatexmk[24m stopping. Multiple instances of the [1m-r [22mand
[1m-e [22moptions can be used, and they are executed in the order they
appear on the command line.
Some care is needed to deal with proper quoting of special char-
acters in the code on the command line. For example, suppose it
is desired to set the latex command to use its -shell-escape
option, then under UNIX/LINUX you could use the line
latexmk -e '$latex=q/latex %O -shell-escape %S/' file.tex
(Note that the q/.../ construct is a [4mPerl[24m idiom equivalent to
using single quotes. This is easier than arranging to get a
quote character correctly escaped in a way that is independent
of the shell and the operating-system.)
[1m-f [22mForce [4mlatexmk[24m to continue document processing despite errors.
Normally, when [4mlatexmk[24m detects that LaTeX or another program has
30 September 2008 4
LATEXMK(1L) LATEXMK(1L)
found an error which will not be resolved by further processing,
no further processing is carried out.
[1m-f- [22mTurn off the forced processing-past-errors such as is set by the
[1m-f [22moption. This could be used to override a setting in a con-
figuration file.
[1m-g [22mForce [4mlatexmk[24m to process document fully, even under situations
where [4mlatexmk[24m would normally decide that no changes in the
source files have occurred since the previous run. This option
is useful, for example, if you change some options and wish to
reprocess the files.
[1m-g- [22mTurn off [1m-g[22m.
[1m-gg [22m"Super go mode" or "clean make": clean out generated files as if
[1m-CA [22mhad been given, and then do a regular make.
[1m-h, -help[0m
Print help information.
[1m-l [22mRun in landscape mode, using the landscape mode for the preview-
ers and the dvi to postscript converters. This option is not
normally needed nowadays, since current previewers normally
determine this information automatically.
[1m-l- [22mTurn off [1m-l[22m.
[1m-new-viewer[0m
When in continuous-preview mode, always start a new viewer to
view the generated file. By default, [4mlatexmk[24m will, in continu-
ous-preview mode, test for a previously running previewer for
the same file and not start a new one if a previous previewer is
running. However, its test sometimes fails (notably if there is
an already-running previewer that is viewing a file of the same
name as the current file, but in a different directory). This
option turns off the default behavior.
[1m-new-viewer-[0m
The inverse of the [1m-new-viewer [22moption. It puts [4mlatexmk[24m in its
normal behavior that in preview-continuous mode it checks for an
already-running previewer.
[1m-p [22mPrint out the document. By default it is the generated
postscript file that is printed. But you can use the [1m-print=...[0m
option to print the dvi or pdf files instead, and you can con-
figure this in a start up file (by setting the [4m$print_type[24m vari-
able).
However, printing is enabled by default only under UNIX/LINUX
systems, where the default is to use the lpr command. In gen-
eral, the correct behavior for printing very much depends on
your system's software. In particular, under MS-Windows you
must have suitable program(s) available, and you must have con-
figured the print commands used by [4mlatexmk[24m. This can be non-
30 September 2008 5
LATEXMK(1L) LATEXMK(1L)
trivial. See the documentation on the [4m$lpr[24m, [4m$lpr_dvi[24m, and
[4m$lpr_pdf[24m configuration variables to see how to set the commands
for printing.
This option is incompatible with the [1m-pv [22mand [1m-pvc [22moptions, so it
turns them off.
[1m-pdf [22mGenerate pdf version of document using pdflatex.
[1m-pdfdvi[0m
Generate pdf version of document from the dvi file, by default
using dvipdf.
[1m-pdfps [22mGenerate pdf version of document from the ps file, by default
using ps2pdf.
[1m-pdf- [22mTurn off generation of pdf version of document. (This can be
used to override a setting in a configuration file. It may get
overridden if some other option requires the generation of a pdf
file.)
[1m-print=dvi, -print=ps, -print=pdf[0m
Define which kind of file is printed. This option also ensures
that the requisite file is made, and turns on printing. The
default is to print a postscript file.
[1m-ps [22mGenerate postscript version of document.
[1m-ps- [22mTurn off generation of postscript version of document. This can
be used to override a setting in a configuration file. (It may
get overridden by some other option that requires a postscript
file, for example a request for printing.)
[1m-pF [22mPostscript file filtering. The argument to this option is a
filter which will generate a filtered postscript file with the
extension ".psF". All extra processing (e.g. preview, printing)
will then be performed on this filtered postscript file.
Example of usage: Use psnup to print two pages on the one page:
latexmk -ps -pF 'psnup -2' foo.tex
or
latexmk -ps -pF "psnup -2" foo.tex
Whether to use single or double quotes round the "psnup -2" will
depend on your command interpreter, as used by the particular
version of perl and the operating system on your computer.
[1m-pv [22mRun file previewer. If the [1m-view [22moption is used, this will
select the kind of file to be previewed (dvi, ps or pdf). Oth-
erwise the viewer views the "highest" kind of file selected, by
the [1m-dvi[22m, [1m-ps[22m, [1m-pdf[22m, [1m-pdfps [22moptions, in the order dvi, ps, pdf
(low to high). If no file type has been selected, the dvi
30 September 2008 6
LATEXMK(1L) LATEXMK(1L)
previewer will be used. This option is incompatible with the [1m-p[0m
and [1m-pvc [22moptions, so it turns them off.
[1m-pv- [22mTurn off [1m-pv[22m.
[1m-pvc [22mRun a file previewer and continually update the .dvi, .ps,
and/or .pdf files whenever changes are made to source files (see
the Description above). Which of these files is generated and
which is viewed is governed by the other options, and is the
same as for the [1m-pv [22moption. The preview-continuous option [1m-pvc[0m
can only work with one file. So in this case you will normally
only specify one filename on the command line. It is also
incompatible with the [1m-p [22mand [1m-pv [22moptions, so it turns these
options off
With a good previewer the display will be automatically updated.
(Under [4msome[24m [4mbut[24m [4mnot[24m [4mall[24m versions of UNIX/Linux "gv -watch" does
this for postscript files; this can be set by a configuration
variable. This would also work for pdf files except for an
apparent bug in gv that causes an error when the newly updated
pdf file is read.) Many other previewers will need a manual
update.
Important note: the acroread program on MS-Windows locks the pdf
file, and prevents new versions being written, so it is a bad
idea to use acroread to view pdf files in preview-continuous
mode. It is better to use a dvi or ps viewer, as set by one of
the [1m-view=dvi [22mand [1m-view=ps [22moptions.
There are some other methods for arranging an update, notably
useful for many versions of xdvi and xpdf. These are best set
in [4mlatexmk[24m's configuration; see below.
Note that if [4mlatexmk[24m dies or is stopped by the user, the
"forked" previewer will continue to run. Successive invocations
with the [1m-pvc [22moption will not fork new previewers, but [4mlatexmk[0m
will normally use the existing previewer. (At least this will
happen when [4mlatexmk[24m is running under an operating system where
it knows how to determine whether an existing previewer is run-
ning.)
[1m-pvc- [22mTurn off [1m-pvc[22m.
[1m-quiet [22mSame as -silent
[1m-r <rcfile>[0m
Read the specified initialization file ("RC file") before pro-
cessing.
Be careful about the ordering: (1) Standard initialization files
-- see the section below on "Configuration/initialization (RC)
files" -- are read first. (2) Then the options on the command
line are acted on in the order they are given. Therefore if an
initialization file is specified by the [1m-r [22moption, it is read
during this second step. Thus an initialization file specified
30 September 2008 7
LATEXMK(1L) LATEXMK(1L)
with the [1m-r [22moption can override both the standard initialization
files and [4mpreviously[24m specified options. But all of these can be
overridden by [4mlater[24m options.
The contents of the RC file just comprise a piece of code in the
[4mPerl[24m programming language (typically a sequence of assignment
statements); they are executed when the [1m-r [22moption is encountered
during [4mlatexmk[24m's parsing of its command line. See the [1m-e [22moption
for a way of giving initialization code directly on [4mlatexmk[24m's
command line. An error results in [4mlatexmk[24m stopping. Multiple
instances of the [1m-r [22mand [1m-e [22moptions can be used, and they are
executed in the order they appear on the command line.
[1m-silent[0m
Run commands silently, i.e., with options that reduce the amount
of diagnostics generated. For example, with the default set-
tings for commands under UNIX, the command "latex -interac-
tion=batchmode" is used for latex.
Also reduce the number of informational messages that [4mlatexmk[0m
generates.
[1m-v, -version[0m
Print version number of [4mlatexmk[24m.
[1m-verbose[0m
Opposite of [1m-silent[22m. This is the default setting.
[1m-view=default, -view=dvi, -view=ps, -view=pdf[0m
Set the kind of file used when previewing is requested (e.g., by
the [1m-pv [22mor [1m-pvc [22mswitches). The default is to view the "highest"
kind of requested file (in the order dvi, ps, pdf).
The preview-continuous option [1m-pvc [22mcan only work with one file. So in
this case you will normally only specify one filename on the command
line.
Options [1m-p[22m, [1m-pv [22mand [1m-pvc [22mare mutually exclusive. So each of these
options turns the others off.
[1mEXAMPLES[0m
% [1mlatexmk thesis [4m[22m#[24m [4mrun[24m [4mlatex[24m [4menough[24m [4mtimes[24m [4mto[24m [4mresolve[0m
[4mcross-references[0m
% [1mlatexmk -pvc -ps thesis[4m[22m#[24m [4mrun[24m [4mlatex[24m [4menough[24m [4mtimes[24m [4mto[24m [4mresolve[0m
[4mcross-references,[24m [4mmake[24m [4ma[24m [4mpostscript[0m
[4mfile,[24m [4mstart[24m [4ma[24m [4mpreviewer.[24m [4mThen[0m
[4mwatch[24m [4mfor[24m [4mchanges[24m [4min[24m [4mthe[24m [4msource[0m
[4mfile[24m [4mthesis.tex[24m [4mand[24m [4many[24m [4mfiles[24m [4mit[0m
[4muses.[24m [4mAfter[24m [4many[24m [4mchanges[24m [4mrerun[24m [4mlatex[0m
[4mthe[24m [4mappropriate[24m [4mnumber[24m [4mof[24m [4mtimes[24m [4mand[0m
[4mremake[24m [4mthe[24m [4mpostscript[24m [4mfile.[24m [4mIf[24m [4mlatex[0m
[4mencounters[24m [4man[24m [4merror,[24m [4mlatexmk[24m [4mwill[0m
[4mkeep[24m [4mrunning,[24m [4mwatching[24m [4mfor[0m
30 September 2008 8
LATEXMK(1L) LATEXMK(1L)
[4msource[24m [4mfile[24m [4mchanges.[0m
[4m%[24m [1mlatexmk -c [4m[22m#[24m [4mremove[24m [4m.aux,[24m [4m.log,[24m [4m.bbl,[24m [4m.blg,[24m [4m.dvi,[0m
[4m.pdf,[24m [4m.ps[24m [4m&[24m [4m.bbl[24m [4mfiles[0m
[1mCONFIGURATION/INITIALIZATION (RC) FILES[0m
[4mLatexmk[24m can be customized using initialization files, which are read at
startup in the following order:
1) The system RC file, if it exists.
On a UNIX system, [4mlatexmk[24m searches for following places for its sys-
tem RC file, in the following order, and reads the first it finds:
"/opt/local/share/latexmk/LatexMk",
"/usr/local/share/latexmk/LatexMk",
"/usr/local/lib/latexmk/LatexMk".
On a MS-WINDOWS system it looks for "C:\latexmk\LatexMk".
2) The user's RC file, "$HOME/.latexmkrc", if it exists. Here $HOME is
the value of the environment variable HOME. On UNIX and clones
(including LINUX), this variable is set by the system; on MS-Windows,
the user may choose to set it.
3) The RC file in the current working directory. This file can be
named either "latexmkrc" or ".latexmkrc", and the first of these to be
found is used, if any.
4) Any RC file(s) specified on the command line with the [1m-r [22moption.
Each RC file is a sequence of [4mPerl[24m commands. Naturally, a user can use
this in creative ways. But for most purposes, one simply uses a
sequence of assignment statements that override some of the built-in
settings of [4mLatexmk[24m. Straightforward cases can be handled without
knowledge of the [4mPerl[24m language by using the examples in this document
as templates. Comment lines are introduced by the "#" character.
Note that command line options are obeyed in the order in which they
are written; thus any RC file specified on the command line with the [1m-r[0m
option can override previous options but can be itself overridden by
later options on the command line. There is also the [1m-e [22moption, which
allows initialization code to be specified in [4mlatexmk[24m's command line.
[1mHOW TO SET VARIABLES IN INITIALIZATION FILES[0m
The important variables that can be configured are described in the
section "List of configuration variables usable in initialization
files". Syntax for setting these variables is of the following forms:
$bibtex = 'bibtex %O %B';
for the setting of a string variable,
$preview_mode = 1;
30 September 2008 9
LATEXMK(1L) LATEXMK(1L)
for the setting of a numeric variable, and
@default_files = ('paper', 'paper1');
for the setting of an array of strings. It is possible to append an
item to an array variable as follows:
push @default_files, 'paper2';
Note that simple "scalar" variables have names that begin with a $
character and array variables have names that begin with a @ character.
Each statement ends with a semicolon.
You can do much more complicated things, but for this you will need to
consult a manual for the [4mPerl[24m programming language.
[1mFORMAT OF COMMAND SPECIFICATIONS[0m
Some of the variables set the commands that [4mlatexmk[24m uses for carrying
out its work, for example to generate a dvi file from a tex file or to
view a postscript file. This section describes some important features
of how the commands are specified.
[1mPlaceholders[22m: Supposed you wanted [4mlatexmk[24m to use the command elatex in
place of the regular latex command, and suppose moreover that you
wanted to give it the option "--shell-escape". You could do this by
the following setting:
$latex = 'elatex --shell-escape %O %S';
The two items starting with the % character are placeholders. These
are substituted by appropriate values before the command is run. Thus
%S will be replaced by the source file that elatex will be applied to,
and %O will be replaced by any options that [4mlatexmk[24m has decided to use
for this command. (E.g., if you used the -silent option it would
replace %O by "-interaction=batchmode".)
The available placeholders are:
[1m%B [22mbase of filename for current command. E.g., if a postscript
file document.ps is being made from the dvi file document.dvi,
then the basename is document.
[1m%D [22mdestination file (e.g., the name of the postscript file when
converting a dvi file to postscript).
[1m%O [22moptions
[1m%R [22mroot filename. This is the base name for the main tex file.
[1m%S [22msource file (e.g., the name of the dvi file when converting a
dvi file to ps).
30 September 2008 10
LATEXMK(1L) LATEXMK(1L)
[1m%T [22mThe name of the primary tex file.
The distinction between %B and %R needs a bit of care, since they are
often the same, but not always. For example on a simple document, the
basename of a bibtex run is the same as for the texfile. But in a doc-
ument with several bibliographies, the bibliography files will have a
variety of names. Since bibtex is invoked with the basename of the
bibliography file, the setting for the bibtex command should therefore
be
$bibtex = 'bibtex %O %B';
Generally, you should use %B rather than %R. Similarly for most pur-
poses, the name %T of the primary texfile is not a useful placeholder.
See the default values in the section "List of configuration variables
usable in initialization files" for what is normally the most appropri-
ate usage.
If you omit to supply any placeholders whatever in the specification of
a command, [4mlatexmk[24m will supply what its author thinks are appropriate
defaults. This gives compatibility with configuration files for previ-
ous versions of [4mlatexmk[24m, which didn't use placeholders.
[1m"Detaching" a command[22m: Normally when [4mlatexmk[24m runs a command, it waits
for the command to run to completion. This is appropriate for commands
like latex, of course. But for previewers, the command should normally
run detached, so that [4mlatexmk[24m gets the previewer running and then
returns to its next task (or exits if there is nothing else to do). To
achieve this effect of detaching a command, you need to precede the
command name with "start ", as in
$dvi_previewer = 'start xdvi %O %S';
This will be translated to whatever is appropriate for your operating
system.
Notes: (1) In some circumstances, [4mlatex[24m will always run a command
detached. This is the case for a previewer in preview continuous mode,
since otherwise previewing continuously makes no sense. (2) This pre-
cludes the possibility of running a command named start. (3) If the
word start occurs more than once at the beginning of the command
string, that is equivalent to having just one. (4) Under cygwin, some
complications happen, since cygwin amounts to a complicated merging of
UNIX and MS-Windows. See the source code for how I've handled the
problem.
[1mCommand names containing spaces[22m: Under MS-Windows it is common that the
name of a command includes spaces, since software is often installed in
a subdirectory of "C:Program Files". Such command names should be
enclosed in double quotes, as in
$lpr_pdf = '"c:/Program Files/Ghostgum/gsview/gsview32.exe" /p
%S';
30 September 2008 11
LATEXMK(1L) LATEXMK(1L)
[1mUsing MS-Windows file associations[22m: A useful trick under modern ver-
sions of MS-Windows (e.g., WinXP) is to use just the command
$dvi_previewer = 'start %S';
Under recent versions of MS-Windows, this will cause to be run whatever
program the system has associated with dvi files. (The same applies
for a postscript viewer and a pdf viewer.)
[1mNot using a certain command[22m: If a command is not to be run, the command
name NONE is used, as in
$lpr = 'NONE lpr';
This typically is used when an appropriate command does not exist on
your system. The string after the "NONE" is effectively a comment.
[1mOptions to commands[22m: Setting the name of a command can be used not only
for changing the name of the command called, but also to add options to
command. Suppose you want [4mlatexmk[24m to use latex with source specials
enabled. Then you might use the following line in an initialization
file:
$latex = 'latex --src-specials %O %S';
[1mAdvanced tricks[22m: Normally one specifies a single command for the com-
mands invoked by [4mlatexmk[24m. Naturally, if there is some complicated
additional processing you need to do in your special situation, you can
write a script (or batch file) to do the processing, and then configure
[4mlatexmk[24m to use your script in place of the standard program.
It is also possible to configure [4mlatexmk[24m to run multiple commands. For
example, if when running pdflatex to generate a pdf file from a tex
file you need to run another program after pdflatex to perform some
extra processing, you could do something like:
$pdflatex = 'pdflatex --shell-escape %O %S; pst2pdf_for_latexmk
%B';
This definition assumes you are using a UNIX-like system, so that the
two commands to be run are separated by the semicolon in the middle of
the string.
[1mLIST OF CONFIGURATION VARIABLES USABLE IN INITIALIZATION FILES[0m
Default values are indicated in brackets.
[1m$banner [0][0m
If nonzero, the banner message is printed across each page when
converting the dvi file to postscript. Without modifying the
variable [4m$banner_message[24m, this is equivalent to specifying the
[1m-d [22moption.
30 September 2008 12
LATEXMK(1L) LATEXMK(1L)
Note that if [1m$banner [22mis nonzero, the [1m$postscript_mode [22mis assumed
and the postscript file is always generated, even if it is newer
than the dvi file.
[1m$banner_intensity [0.95][0m
Equivalent to the [1m-bi [22moption, this is a decimal number between 0
and 1 that specifies how dark to print the banner message. 0 is
black, 1 is white. The default is just right if your toner car-
tridge isn't running too low.
[1m$banner_message ["DRAFT"][0m
The banner message to print across each page when converting the
dvi file to postscript. This is equivalent to the [1m-bm [22moption.
[1m$banner_scale [220.0][0m
A decimal number that specifies how large the banner message
will be printed. Experimentation is necessary to get the right
scale for your message, as a rule of thumb the scale should be
about equal to 1100 divided by the number of characters in the
message. The Default is just right for 5 character messages.
This is equivalent to the [1m-bs [22moption.
[1m@BIBINPUTS[0m
This is an array variable, now mostly obsolete, that specifies
directories where [4mlatexmk[24m should look for .bib files. By
default it is set from the BIBINPUTS environment variable of the
operating system. If that environment variable is not set, a
single element list consisting of the current directory is set.
The format of the directory names depends on your operating sys-
tem, of course. Examples for setting this variable are:
@BIBINPUTS = ( ".", "C:\bibfiles" );
@BIBINPUTS = ( ".", "\\server\bibfiles" );
@BIBINPUTS = ( ".", "C:/bibfiles" );
@BIBINPUTS = ( ".", "//server/bibfiles" );
@BIBINPUTS = ( ".", "/usr/local/texmf/bibtex/bib" );
Note that under MS Windows, either a forward slash "/" or a
backward slash "\" can be used to separate pathname components,
so the first two and the second two examples are equivalent.
Each backward slash should be doubled to avoid running afoul of
[4mPerl[24m's rules for writing strings.
[4mImportant[24m [4mnote:[24m This variable is now mostly obsolete in the current
version of [4mlatexmk[24m, since it has a better method of searching for files
using the kpsewhich command. However, if your system is an unusual one
without the kpsewhich command, you may need to set the variable [4m@BIBIN-[0m
[4mPUTS[24m.
[1m$bibtex ["bibtex %O %S"][0m
The BibTeX processing program.
[1m$bibtex_silent_switch ["-terse"][0m
[1mSwitch(es) [22mfor the BibTeX processing program when silent mode is
on.
30 September 2008 13
LATEXMK(1L) LATEXMK(1L)
[1m$cleanup_includes_generated [0][0m
If nonzero, specifies that cleanup also deletes files that are
detected in log file as being generated (see the \openout lines
in the log file). It will also include files made from these
first generation generated files.
[1m$cleanup_mode [0][0m
If nonzero, specifies cleanup mode: 1 for full cleanup, 2 for
cleanup except for dvi, ps and pdf files, 3 for cleanup except
for dep and aux files. (There is also extra cleaning as speci-
fied by the [4m$clean_ext[24m, [4m$clean_full_ext[24m and [4m@generated_exts[0m
variables.)
This variable is equivalent to specifying one of the [1m-c[22m, [1m-c1[22m, or [1m-C[0m
options. But there should be no need to set this variable from an RC
file.
[1m$clean_ext [""][0m
Extra extensions of files for [4mlatexmk[24m to remove when any of the
clean-up options ([1m-c[22m, [1m-c1[22m, or [1m-C[22m) is selected. The value of
this variable is a string containing the extensions separated by
spaces.
[1m$clean_full_ext [""][0m
Extra extensions of files for [4mlatexmk[24m to remove when the [1m-C[0m
option is selected, i.e., extensions of files to remove when the
.dvi, etc files are to be cleaned-up.
[1m@cus_dep_list [()][0m
Custom dependency list -- see section on "Custom Dependencies".
[1m@default_files [("*.tex")][0m
Default list of files to be processed.
Normally, if no filenames are specified on the command line,
[4mlatexmk[24m processes all tex files specified in the [4m@default_files[0m
variable, which by default is set to all tex files ("*.tex") in
the current directory. This is a convenience: just run [4mlatexmk[0m
and it will process an appropriate set of files. But sometimes
you want only some of these files to be processed. In this case
you set the [4m@default_files[24m in an initialization file (e.g., the
file "latexmkrc" in the current directory). Then if no files
are specified on the command line then the files you specify by
setting [4m@default_files[24m are processed.
Three examples:
@default_files = ("paper_current");
@default_files = ("paper1", "paper2.tex");
@default_files = ("*.tex", "*.dtx");
Note that more than file may be given, and that the default
extension is ".tex". Wild cards are allowed. The parentheses
30 September 2008 14
LATEXMK(1L) LATEXMK(1L)
are because [4m@default_files[24m is an array variable, i.e., a
sequence of filename specifications is possible.
[1m$dvi_filter [empty][0m
The dvi file filter to be run on the newly produced dvi file
before other processing. Equivalent to specifying the [1m-dF[0m
option.
[1m$dvi_mode [0][0m
If nonzero, generate a dvi version of the document. Equivalent
to the [1m-dvi [22moption.
[1m$dvi_previewer ["start xdvi %O %S" under UNIX][0m
The command to invoke a dvi-previewer. [Default is "start"
under MS-WINDOWS; under more recent versions of Windows, this
will cause to be run whatever command the system has associated
with .dvi files.]
[1m$dvi_previewer_landscape ["start xdvi %O %S"][0m
The command to invoke a dvi-previewer in landscape mode.
[Default is "start" under MS-WINDOWS; under more recent versions
of Windows, this will cause to be run whatever command the sys-
tem has associated with .dvi files.]
[1m$dvipdf ["dvipdf %O %S %D"][0m
Command to convert dvi to pdf file. A common reconfiguration is
to use the dvipdfm command, which needs its arguments in a dif-
ferent order:
$dvipdf = "dvipdfm %O -o %D %S";
WARNING: The default dvipdf script generates pdf files with
bitmapped fonts, which do not look good when viewed by acroread.
That script should be modified to give dvips the options "-P
pdf" to ensure that type 1 fonts are used in the pdf file.
[1m$dvips ["dvips %O -o %D %S"][0m
The program to used as a filter to convert a .dvi file to a .ps
file. If pdf is going to be generated from pdf, then the value
of the $dvips_pdf_switch -- see below -- will be included in the
options substituted for "%O".
[1m$dvips_landscape ["dvips -tlandscape %O -o %D %S"][0m
The program to used as a filter to convert a .dvi file to a .ps
file in landscape mode.
[1m$dvips_pdf_switch ["-P pdf"][0m
Switch(es) for dvips program when pdf file is to be generated
from ps file.
[1m$dvips_silent_switch ["-q"][0m
Switch(es) for dvips program when silent mode is on.
[1m$dvi_update_command [""][0m
When the dvi previewer is set to be updated by running a com-
mand, this is the command that is run. See the information for
30 September 2008 15
LATEXMK(1L) LATEXMK(1L)
the variable [4m$dvi_update_method[24m for further information, and see
information on the variable [4m$pdf_update_method[24m for an example
for the analogous case of a pdf previewer.
[1m$dvi_update_method [2 under UNIX, 1 under MS-Windows][0m
How the dvi viewer updates its display when the dvi file has
changed. The values here apply equally to the
[4m$pdf_update_method[24m and to the [4m$ps_update_method[24m variables.
0 => update is automatic,
1=> manual update by user, which may only mean a mouse click
on the viewer's window or may mean a more serious action.
2 => Send the signal, whose number is in the variable
[4m$dvi_update_signal[24m. The default value under UNIX is suitable
for xdvi.
3 => Viewer cannot do an update, because it locks the file.
(As with acroread under MS-Windows.)
4 => run a command to do the update. The command is speci-
fied by the variable [4m$dvi_update_command[24m.
See information on the variable [4m$pdf_update_method[24m for an exam-
ple of updating by command.
[1m$dvi_update_signal [Under UNIX: SIGUSR1, which is a system-dependent[0m
[1mvalue][0m
The number of the signal that is sent to the dvi viewer when it
is updated by sending a signal -- see the information on the
variable [4m$dvi_update_method[24m. The default value is the one
appropriate for xdvi on a UNIX system.
[1m$fdb_ext ["fdb_latexmk"][0m
The extension of the file which [4mlatexmk[24m generates to contain a
database of information on source files. You will not normally
need to change this.
[1m$force_mode [0][0m
If nonzero, continue processing past minor [4mlatex[24m errors includ-
ing unrecognized cross references. Equivalent to specifying the
[1m-f [22moption.
[1m@generated_exts [( aux , bbl , idx , ind , lof , lot , out , toc ,[0m
[1m$fdb_ext )][0m
This contains a list of extensions for files that are generated
during a LaTeX run and that are read in by LaTeX in later runs,
either directly or indirectly.
This list has two uses: (a) to set the kinds of file to be
deleted in a cleanup operation (with the [1m-c[22m, [1m-C[22m, [1m-CA[22m, [1m-g [22mand [1m-gg[0m
options), and (b) in the determination of whether a rerun of
(pdf)LaTeX is needed after a run that gives an error.
(Normally, a change of a source file during a run should provoke
a rerun. This includes a file generated by LaTeX, e.g., an aux
file, that is read in on subsequent runs. But after a run that
results in an error, a new run should occur until the user has
made a change in the files. But the user may have corrected an
error in a source .tex file during the run. So [4mlatexmk[24m needs to
30 September 2008 16
LATEXMK(1L) LATEXMK(1L)
distinguish user-generated and automatically generated files; it
determines the automatically generated files as those with
extensions in the list in @generated_exts.)
A convenient way to add an extra extension to the list, without
losing the already defined ones is to use a push command in the
line in an RC file. E.g.,
push @generated_exts, "end";
adds the extension "end" to the list of predefined generated
extensions. (This extension is used by the RevTeX package, for
example.)
[1m$go_mode [0][0m
If nonzero, process files regardless of timestamps, and is then
equivalent to the [1m-g [22moption.
[1m%hash_calc_ignore_pattern[0m
[1m!!!This variable is for experts only!!![0m
The general rule [4mlatexmk[24m uses for determining when an extra run
of some program is needed is that one of the source files has
changed. But consider for example a latex package that causes
an encapsulated postscript file (an "eps" file) to be made that
is to be read in on the next run. The file contains a comment
line giving its creation date and time. On the next run the
time changes, [4mlatex[24m sees that the eps file has changed, and
therefore reruns latex. This causes an infinite loop, only
exited becaues [4mlatexmk[24m has a limit on the number of runs to
guard against pathological situations.
But the changing line has no real effect, since it is a comment.
You can instruct [4mlatex[24m to ignore the offending line as follows:
$hash_calc_ignore_pattern{'eps'} = '^%%CreationDate: ';
This creates a rule for files with extension [4m.eps[24m about lines to
ignore. The left-hand side is a [4mPerl[24m idiom for setting an item
in a hash. Note that the file extension is specified without a
period. The value, on the right-hand side, is a string contain-
ing a regular expresssion. (See documentation on [4mPerl[24m for how
they are to be specified in general.) This particular regular
expression specifies that lines beginning with "%%CreationDate:
" are to be ignored in deciding whether a file of the given
extension [4m.eps[24m has changed.
[1m$kpsewhich ["kpsewhich %S"][0m
The program called to locate a source file when the name alone
is not sufficient. Most filenames used by [4mlatexmk[24m have suffi-
cient path information to be found directly. But sometimes,
notably when the file, but not its path is known. The program
specified by $kpsewhich is used to find it.
See also the [4m@BIBINPUTS[24m variable for another way that [4mlatexmk[0m
also uses to try to locate files; it applies only in the case of
30 September 2008 17
LATEXMK(1L) LATEXMK(1L)
.bib files.
[1m$landscape_mode [0][0m
If nonzero, run in landscape mode, using the landscape mode pre-
viewers and dvi to postscript converters. Equivalent to the [1m-l[0m
option. Normally not needed with current previewers.
[1m$latex ["latex %O %S"][0m
The LaTeX processing program. Note that as with other programs,
you can use this variable not just to change the name of the
program used, but also specify options to the program. E.g.,
$latex = "latex --src-specials";
[1m$latex_silent_switch ["-interaction=batchmode"][0m
Switch(es) for the LaTeX processing program when silent mode is
on. Under MS-Windows, the default value is changed to "-inter-
action=batchmode -c-style-errors", as used by MikTeX and fpTeX.
[1m$lpr ["lpr %O %S" under UNIX/LINUX, "NONE lpr" under MS-WINDOWS][0m
The command to print postscript files.
Under MS-Windows (unlike UNIX/LINUX), there is no standard pro-
gram for printing files. But there are ways you can do it. For
example, if you have gsview installed, you could use it with the
option "/p":
$lpr = '"c:/Program Files/Ghostgum/gsview/gsview32.exe" /p';
If gsview is installed in a different directory, you will need
to make the appropriate change. Note the combination of single
and double quotes around the name. The single quotes specify
that this is a string to be assigned to the configuration vari-
able [4m$lpr[24m. The double quotes are part of the string passed to
the operating system to get the command obeyed; this is neces-
sary because one part of the command name ("Program Files") con-
tains a space which would otherwise be misinterpreted.
[1m$lpr_dvi ["NONE lpr_dvi"][0m
The printing program to print dvi files.
[1m$lpr_pdf ["NONE lpr_pdf"][0m
The printing program to print pdf files.
Under MS-Windows you could set this to use gsview, if it is
installed, e.g.,
$lpr = '"c:/Program Files/Ghostgum/gsview/gsview32.exe" /p';
If gsview is installed in a different directory, you will need
to make the appropriate change. Note the double quotes around
the name: this is necessary because one part of the command name
("Program Files") contains a space which would otherwise be mis-
interpreted.
30 September 2008 18
LATEXMK(1L) LATEXMK(1L)
[1m$makeindex ["makeindex %O -o %D %S"][0m
The index processing program.
[1m$max_repeat [5][0m
The maximum number of times [4mlatexmk[24m will run latex/pdflatex
before deciding that there may be an infinite loop and that it
needs to bail out, rather than rerunning latex/pdflatex again to
resolve cross-references, etc. The default value covers all
normal cases.
(Note that the "etc" covers a lot of cases where one run of
latex/pdflatex generates files to be read in on a later run.)
[1m$new_viewer_always [0][0m
This variable applies to [4mlatexmk[24m [1monly [22min continuous-preview
mode. If [4m$new_viewer_always[24m is 0, [4mlatexmk[24m will check for a pre-
viously running previewer on the same file, and if one is run-
ning will not start a new one. If [4m$new_viewer_always[24m is non-
zero, this check will be skipped, and [4mlatexmk[24m will behave as if
no viewer is running.
[1m$pdf_mode [0][0m
If zero, do NOT generate a pdf version of the document. If
equal to 1, generate a pdf version of the document using pdfla-
tex. If equal to 2, generate a pdf version of the document from
the ps file, by using the command specified by the [4m$ps2pdf[24m vari-
able. If equal to 3, generate a pdf version of the document
from the dvi file, by using the command specified by the [4m$dvipdf[0m
variable.
Equivalent to the [1m-pdf-[22m, [1m-pdf[22m, [1m-pdfdvi[22m, [1m-pdfps [22moptions.
[1m$pdflatex ["pdflatex %O %S"][0m
The LaTeX processing program in the version that makes a pdf
file instead of a dvi file.
[1m$pdflatex_silent_switch ["-interaction=batchmode"][0m
Switch(es) for the pdflatex program (specified in the variable
[4m$pdflatex[24m when silent mode is on. Under MS-Windows, the default
value is changed to "-interaction=batchmode -c-style-errors", as
used by MikTeX and fpTeX.
[1m$pdf_previewer ["start acroread %O %S"][0m
The command to invoke a pdf-previewer. [Default is changed to
"start" on MS-WINDOWS; under more recent versions of Windows,
this will cause to be run whatever command the system has asso-
ciated with .pdf files.]
[1mWARNING[22m: Potential problem under MS-Windows: if acroread is used
as the pdf previewer, and it is actually viewing a pdf file, the
pdf file cannot be updated. Thus makes acroread a bad choice of
previewer if you use [4mlatexmk[24m's previous-continuous mode (option
[1m-pvc[22m) under MS-windows. This problem does not occur if
ghostview, gv or gsview is used to view pdf files.
[1m$pdf_update_command [""][0m
When the pdf previewer is set to be updated by running a com-
mand, this is the command that is run. See the information for
30 September 2008 19
LATEXMK(1L) LATEXMK(1L)
the variable [4m$pdf_update_method[24m.
[1m$pdf_update_method [1 under UNIX, 3 under MS-Windows][0m
How the pdf viewer updates its display when the pdf file has
changed. See the information on the variable [4m$dvi_update_method[0m
for the codes. (Note that information needs be changed slightly
so that for the value 4, to run a command to do the update, the
command is specified by the variable [4m$pdf_update_command[24m, and
for the value 2, to specify update by signal, the signal is
specified by [4m$pdf_update_signal[24m.)
Note that acroread under MS-Windows (but not UNIX) locks the pdf
file, so the default value is then 3.
Arranging to use a command to get a previewer explicitly updated
requires three variables to be set. For example:
$pdf_previewer = "start xpdf -remote %R %O %S";
$pdf_update_method = 4;
$pdf_update_command = "xpdf -remote %R -reload";
The first setting arranges for the xpdf program to be used in
its "remote server mode", with the server name specified as the
rootname of the TeX file. The second setting arranges for
updating to be done in response to a command, and the third set-
ting sets the update command.
[1m$pdf_update_signal [Under UNIX: SIGHUP, which is a system-dependent[0m
[1mvalue][0m
The number of the signal that is sent to the pdf viewer when it
is updated by sending a signal -- see the information on the
variable [4m$pdf_update_method[24m. The default value is the one
appropriate for gv on a UNIX system.
[1m$pid_position[1 under UNIX, -1 under MS-Windows][0m
The variable [4m$pid_position[24m is used to specify which word in
lines of the output from [4m$pscmd[24m corresponds to the process ID.
The first word in the line is numbered 0. The default value of
1 (2nd word in line) is correct for Solaris 2.6 and Linux. Set-
ting the variable to -1 is used to indicate that [4m$pscmd[24m is not
to be used.
[1m$postscript_mode [0][0m
If nonzero, generate a postscript version of the document.
Equivalent to the [1m-ps [22moption.
[1m$preview_continuous_mode [0][0m
If nonzero, run a previewer to view the document, and continue
running [4mlatexmk[24m to keep .dvi up-to-date. Equivalent to the [1m-pvc[0m
option. Which previewer is run depends on the other settings,
see the command line options [1m-view=[22m, and the variable [4m$view[24m.
[1m$preview_mode [0][0m
If nonzero, run a previewer to preview the document. Equivalent
to the [1m-pv [22moption. Which previewer is run depends on the other
settings, see the command line options [1m-view=[22m, and the variable
[4m$view[24m.
30 September 2008 20
LATEXMK(1L) LATEXMK(1L)
[1m$printout_mode [0][0m
If nonzero, print the document using [4mlpr[24m. Equivalent to the [1m-p[0m
option. This is recommended [1mnot [22mto be set from an RC file, oth-
erwise you could waste lots of paper.
[1m$print_type = ["ps"][0m
Type of file to printout: possibilities are "dvi", "none",
"pdf", or "ps".
[1m$pscmd [22mCommand used to get all the processes currently run by the user.
The -pvc option uses the command specified by the variable
[4m$pscmd[24m to determine if there is an already running previewer,
and to find the process ID (needed if [4mlatexmk[24m needs to signal
the previewer about file changes).
Each line of the output of this command is assumed to correspond
to one process. See the [4m$pid_position[24m variable for how the pro-
cess number is determined.
The default for [4mpscmd[24m is "NONE" under MS-Windows and cygwin
(i.e., the command is not used), "ps --width 200 -f -u
$ENV{USER}" under linux, "ps -ww -u $ENV{USER}" under darwin
(Macintosh OS-X), and "ps -f -u $ENV{USER}" under other operat-
ing systems (including other flavors of UNIX). In these speci-
fications "$ENV{USER}" is substituted by the username.
[1m$ps2pdf ["ps2pdf %O %S %D"][0m
Command to convert ps to pdf file.
[1m$ps_filter [empty][0m
The postscript file filter to be run on the newly produced
postscript file before other processing. Equivalent to specify-
ing the [1m-pF [22moption.
[1m$ps_previewer ["start gv %O %S", but "start %O %S" under MS-WINDOWS][0m
The command to invoke a ps-previewer. (The default under MS-
WINDOWS will cause to be run whatever command the system has
associated with .ps files.)
Note that gv could be used with the -watch option updates its
display whenever the postscript file changes, whereas ghostview
does not. However, different versions of gv have slightly dif-
ferent ways of writing this option. You can configure this
variable apppropriately.
[1mWARNING[22m: Linux systems may have installed one (or more) versions
of gv under different names, e.g., ggv, kghostview, etc, but
perhaps not one called gv.
[1m$ps_previewer_landscape ["start gv -swap %O %S", but "start %O %S"[0m
[1munder MS-WINDOWS][0m
The command to invoke a ps-previewer in landscape mode.
[1m$ps_update_command [""][0m
When the postscript previewer is set to be updated by running a
command, this is the command that is run. See the information
for the variable [4m$ps_update_method[24m.
30 September 2008 21
LATEXMK(1L) LATEXMK(1L)
[1m$ps_update_method [0 under UNIX, 1 under MS-Windows][0m
How the postscript viewer updates its display when the ps file
has changed. See the information on the variable
[4m$dvi_update_method[24m for the codes. (Note that information needs
be changed slightly so that for the value 4, to run a command to
do the update, the command is specified by the variable
[4m$ps_update_command[24m, and for the value 2, to specify update by
signal, the signal is specified by [4m$ps_update_signal[24m.)
[1m$ps_update_signal [Under UNIX: SIGHUP, which is a system-dependent[0m
[1mvalue][0m
The number of the signal that is sent to the pdf viewer when it
is updated by sending a signal -- see [4m$ps_update_method[24m. The
default value is the one appropriate for gv on a UNIX system.
[1m$sleep_time [2][0m
The time to sleep (in seconds) between checking for source file
changes when running the [1m-pvc [22moption.
[1m$texfile_search [""][0m
This is an obsolete variable, replaced by the [4m@default_files[0m
variable.
For backward compatibility, if you choose to set [4m$tex-[0m
[4mfile_search[24m, it is a string of space-separated filenames, and
then [4mlatexmk[24m replaces [4m@default_files[24m with the filenames in [4m$tex-[0m
[4mfile_search[24m to which is added "*.tex".
[1m$tmpdir [See below for default][0m
Directory to store temporary files that [4mlatexmk[24m may generate
while running.
The default under MSWindows (including cygwin), is to set
[4m$tmpdir[24m to the value of the first of whichever of the system
environment variables TMPDIR or TEMP exists, otherwise to the
current directory. Under other operating systems (expected to
be UNIX/Linux, including OS-X), the default is the value of the
system environment variable TMPDIR if it exists, otherwise
"/tmp".
[1m$view ["default"][0m
Which kind of file is to be previewed if a previewer is used.
The possible values are "default", "dvi", "ps", "pdf". The
value of "default" means that the "highest" of the kinds of file
generated is to be used (among dvi, ps and pdf).
[1mCUSTOM DEPENDENCIES[0m
In any RC file a set of custom dependencies can be set up to convert a
file with one extension to a file with another. An example use of this
would be to allow [4mlatexmk[24m to convert a [4m.fig[24m file to [4m.eps[24m to be included
in the [4m.tex[24m file.
The old method of configuring [4mlatexmk[24m was to directly manipulate the
[1m@cus_dep_list [22marray that contains information defining the custom
dependencies. This method still works. But now there are subroutines
that allow convenient manipulations of the custom dependency list.
30 September 2008 22
LATEXMK(1L) LATEXMK(1L)
These are
add_cus_dep( fromextension, toextension, must, subroutine )
remove_cus_dep( fromextension, toextension )
show_cus_dep()
The custom dependency is a list of rules, each of which is specified as
follow:
[1mfrom extension:[0m
The extension of the file we are converting from (e.g. "fig").
It is specified without a period.
[1mto extension:[0m
The extension of the file we are converting to (e.g. "eps"). It
is specified without a period.
[1mmust: [22mIf non-zero, the file from which we are converting [1mmust [22mexist,
if it doesn't exist [4mlatexmk[24m will give an error message and exit
unless the [1m-f [22moption is specified. If [4mmust[24m is zero and the file
we are converting from doesn't exist, then no action is taken.
[1mfunction:[0m
The name of the subroutine that [4mlatexmk[24m should call to perform
the file conversion. The first argument to the subroutine is
the base name of the file to be converted without any extension.
The subroutines are declared in the syntax of [4mPerl[24m. The func-
tion should return 0 if it was successful and a nonzero number
if it failed.
It is invoked whenever [4mlatexmk[24m detects that a run of latex/pdflatex
needs to read a file, like a graphics file, whose extension is the to-
extension of a custom dependency. Then [4mlatexmk[24m examines whether a file
exists with the same name, but with the corresponding from-extension,
as specified in the custom-dependency rule. If it does, then whenever
the destination file (the one with the to-extension) is out-of-date
with respect to the corresponding source file.
To make the new destination file, the [4mPerl[24m subroutine specified in the
rule is invoked, with an argument that is the base name of the files in
question. Simple cases just involve a subroutine invoking an external
program; this can be done by following the templates below, even by
those without knowledge of the [4mPerl[24m programming language. Of course,
experts could do something much more elaborate.
One other item in each custom-dependency rule labelled "must" above
specifies how the rule should be applied when the source file fails to
exist.
A simple and typical example of code in an initialization rcfile is
add_cus_dep( 'fig', 'eps', 0, 'fig2eps' );
sub fig2eps {
system("fig2dev -Leps $_[0].fig $_[0].eps");
}
The first line adds a custom dependency that converts a file with
extension "fig", as created by the xfig program, to an encapsulated
30 September 2008 23
LATEXMK(1L) LATEXMK(1L)
postscript file, with extension "eps". The remaining lines define a
subroutine that carries out the conversion. If a rule for converting
"fig" to "eps" files already exists (e.g., from a previously read-in
initialization file), the [4mlatexmk[24m will delete this rule before making
the new one.
Suppose [4mlatexmk[24m is using this rule to convert a file "figure.fig" to
"figure.eps". Then it will invoke the fig2eps subroutine defined in
the above code with a single argument "figure", which is the basename
of each of the files (possibly with a path component). This argument
is referred to by [4mPerl[24m as $_[0]. In the example above, the subroutine
uses the [4mPerl[24m command system to invoke the program fig2dev. The double
quotes around the string are a [4mPerl[24m idiom that signify that each string
of the form of a variable name, $_[0] in this case, is to be substi-
tuted by its value.
If the return value of the subroutine is non-zero, then [4mlatexmk[24m will
assume an error occurred during the execution of the subroutine. In
the above example, no explicit return value is given, and instead the
return value is the value returned by the last (and only) statement,
i.e., the invocation of system, which returns the value 0 on success.
If you use filenames with spaces in them, and if your LaTeX system and
all other relevant software correctly handle such filenames, then you
could put single quotes around filenames in the command line that is
executed:
add_cus_dep( 'fig', 'eps', 0, 'fig2eps' );
sub fig2eps {
system("fig2dev -Lps '$_[0].fig' '$_[0].eps'");
}
This causes the invocation of the [4mfig2dev[24m program to have quoted file-
names; it should therefore work with filenames containing spaces. [1mHow-[0m
[1mever, not all software deals correctly with filenames that contain[0m
[1mspaces. Moreover, the rules, if any, for quoting filenames vary[0m
[1mbetween operating systems, command shells and individual pieces of[0m
[1msoftware, so this code may not always work.[0m
If you use pdflatex instead of latex, then you will probably prefer to
convert your graphics files to pdf format, in which case you would
replace the above code in an initialization file by
add_cus_dep( 'fig', 'pdf, 0, 'fig2pdf' );
sub fig2pdf {
system("fig2dev -Lpdf $_[0].fig $_[0].pdf");
}
If you have some general custom dependencies defined in the system or
user initialization file, you may find that for a particular project
they are undesirable. So you might want to delete the unneeded ones.
For example, you remove any "fig" to "eps" rule by the line
remove_cus_dep( 'fig', 'eps' );
If you have complicated sets of custom dependencies, you may want to
get a listing of the custom dependencies. This is done by using the
line
30 September 2008 24
LATEXMK(1L) LATEXMK(1L)
show_cus_dep();
in an initialization file.
Another example of a custom dependency overcomes a limitation of
[4mlatexmk[24m concerning index files. The only index-file conversion built-
in to [4mlatexmk[24m is from an ".idx" file written on one run of latex/pdfla-
tex to an ".ind" file to be read in on a subsequent run. But with the
index.sty package you can create extra indexes with extensions that you
configure. [4mLatexmk[24m does not know how to deduce the extensions from the
information it has. But you can easily write a custom dependency. For
example if your latex file uses the command "\newindex{spe-
cial}{ndx}{nnd}{Special index}" you will need to convert files with the
extension [4m.ndx[24m to [4m.nnd[24m. The following lines in an initialization RC
file will cause this to happen:
add_cus_dep('ndx', 'nnd', 0, 'makendx2nnd');
sub makendx2nnd {
system("makeindex -o $_[0].nnd $_[0].ndx");
}
(You will need to modify this code if you use filenames with spaces in
them, to provide correct quoting of the filenames.)
Those of you with experience with Makefiles, will undoubtedly be con-
cerned that the [4m.ndx[24m file is written during a run of latex/pdflatex and
is always later than the [4m.nnd[24m last read in. Thus the [4m.nnd[24m appears to
be perpetually out-of-date. This situation, of circular dependencies,
is endemic to latex, and [4mlatexmk[24m in its current version works correctly
with circular dependencies. It examines the contents of the files (by
use of an md5 checksum), and only does a remake when the file contents
have actually changed.
Of course if you choose to write random data to the [4m.nnd[24m (or and [4m.aux[0m
file, etc) that changes on each new run, then you will have a problem.
For real experts: See the [4m%hash_cal_ignore_pattern[24m if you have to deal
with such problems.
Glossaries can be dealt with similarly.
[1mOLD METHOD OF DEFINING CUSTOM DEPENDENCIES[0m
In previous versions of [4mlatexmk[24m, the only method of defining custom
dependencies was to directly manipulate the table of custom dependen-
cies. This is contained in the [1m@cus_dep_list [22marray. It is an array of
strings, and each string in the array has four items in it, each sepa-
rated by a space, the from-extension, the to-extension, the "must"
item, and the name of the subroutine for the custom dependency. These
were all defined above.
An example of the old method of defining custom dependencies is as fol-
lows. It is the code in an RC file to ensure automatic conversion of
[4m.fig[24m files to [4m.eps[24m files:
push @cus_dep_list, "fig eps 0 fig2eps";
sub fig2eps {
system("fig2dev -Lps $_[0].fig $_[0].eps");
}
30 September 2008 25
LATEXMK(1L) LATEXMK(1L)
This method still works, and is equivalent to the earlier code using
the add_cus_dep subroutine, except that it doesn't delete any previous
custom-dependency for the same conversion. So the new method is
preferable.
[1mSEE ALSO[0m
latex(1), bibtex(1).
[1mBUGS[0m
Sometimes a viewer (gv) tries to read an updated .ps or .pdf file after
its creation is started but before the file is complete. Work around:
manually refresh (or reopen) display. Or use one of the other preview-
ers and update methods.
(The following isn't really a bug, but concerns features of preview-
ers.) Preview continuous mode only works perfectly with certain pre-
viewers: Xdvi on UNIX/LINUX works for dvi files. Gv on UNIX/LINUX
works for both postscript and pdf. Ghostview on UNIX/LINUX needs a
manual update (reopen); it views postscript and pdf. Gsview under MS-
Windows works for both postscript and pdf, but only reads the updated
file when its screen is refreshed. Acroread under UNIX/LINUX views
pdf, but the file needs to be closed and reopened to view an updated
version. Under MS-Windows, acroread locks its input file and so the
pdf file cannot be updated. (Remedy: configure [4mlatexmk[24m to use gsview
instead.)
[1mTHANKS TO[0m
Authors of previous versions. Many users with their feedback, and
especially David Coppit (username david at node coppit.org) who made
many useful suggestions that contributed to version 3, and Herbert
Schulz. (Please note that the e-mail addresses are not written in
their standard form to avoid being harvested by worms and viruses.)
[1mAUTHOR[0m
Current version, by John Collins (username collins at node
phys.psu.edu). (Version 4.01a).
Released version (last was 4.01) can be obtained from CTAN:
<http://www.tug.org/tex-archive/support/latexmk/>, and from the
author's website <http://www.phys.psu.edu/~collins/software/latexmk/>.
Modifications and enhancements by Evan McLean (Version 2.0)
Original script called "go" by David J. Musliner (RCS Version 3.2)
30 September 2008 26
|