Mercurial > hg > Papers > 2011 > toma-thesis
changeset 1:a4d96573532b
Modify a Makefile
author | Daichi Toma <toma@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 18 Nov 2011 03:19:32 +0900 |
parents | f6cf611984d2 |
children | 7ea29212ac38 |
files | midterm/Makefile |
diffstat | 1 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/midterm/Makefile Wed Nov 16 17:37:58 2011 +0900 +++ b/midterm/Makefile Fri Nov 18 03:19:32 2011 +0900 @@ -3,14 +3,20 @@ TARGET=midterm LATEX=platex +BIBTEX=pbibtex DVIPDF=dvipdfmx #You need setting "-l" option if You think You get a landscape PDF #DVIPDF_OPT=-l +#Embed fonts +DVIPDF_OPT=-f hiraginoEmbed.map + .SUFFIXES: .tex .dvi .pdf .tex.dvi: $(LATEX) $< + $(BIBTEX) $(TARGET) + $(LATEX) $< $(LATEX) $< .dvi.pdf: @@ -26,5 +32,5 @@ clean: - rm -f *.dvi *.aux *.log *.pdf *.ps *.gz *~ *.core + rm -f *.dvi *.aux *.log *.pdf *.ps *.gz *.bbl *.blg *~ *.core