Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3b26eed

Browse files
committed
Added rule to generate the PDF format using pdflatex. Commented out since
this is still experimental software. See the comment.
1 parent 3568524 commit 3b26eed

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Doc/Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747

4848
# Where are the various programs?
4949
LATEX= latex
50+
PDFLATEX= pdflatex
5051
BIBTEX= bibtex
5152
DVIPS= dvips -f -N0
5253
DISTILL= distill
@@ -97,6 +98,17 @@ api: api.ps
9798
.ps.pdf:
9899
$(DISTILL) $<
99100

101+
# An alternate formulation of PDF creation; requires latex format with
102+
# pdftex. To use this instead of the Acrobat distiller solution, comment
103+
# out the above .ps.pdf rule and uncomment this rule. This was tested
104+
# using a pre-release of the teTeX distribution. See
105+
# http://www.tug.org/tetex/ for more information on getting & using teTeX.
106+
# This rule avoids creation of the intermediate PostScript files and uses
107+
# only free software.
108+
#
109+
#.dvi.pdf:
110+
# $(PDFLATEX) $*
111+
100112
# Dependencies
101113
COMMONTEX=myformat.sty copyright.tex boilerplate.tex
102114

0 commit comments

Comments
 (0)