-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,36 @@ | ||
marginfix.zip:marginfix.dtx marginfix.pdf marginfix.ins README | ||
zip $@ $^ | ||
mkdir marginfix | ||
cp $^ marginfix/ | ||
zip -r $@ marginfix | ||
rm -rf marginfix | ||
|
||
marginfix.sty:marginfix.dtx marginfix.ins | ||
yes | latex marginfix.ins | ||
|
||
marginfix.pdf:marginfix.dtx | ||
pdflatex marginfix.dtx | ||
|
||
.PHONY: test | ||
|
||
test:margintest.pdf tufte.pdf ragged.pdf defer.pdf phantom.pdf float.pdf stretch.pdf | ||
|
||
margintest.pdf:marginfix.sty test/margintest.tex | ||
pdflatex test/margintest.tex | ||
|
||
tufte.pdf:marginfix.sty test/tufte.tex | ||
pdflatex test/tufte.tex | ||
|
||
ragged.pdf:marginfix.sty test/ragged.tex | ||
pdflatex test/ragged.tex | ||
|
||
defer.pdf:marginfix.sty test/defer.tex | ||
pdflatex test/defer.tex | ||
|
||
phantom.pdf:marginfix.sty test/phantom.tex | ||
pdflatex test/phantom.tex | ||
|
||
float.pdf:marginfix.sty test/float.tex | ||
pdflatex test/float.tex | ||
|
||
stretch.pdf:marginfix.sty test/stretch.tex | ||
pdflatex test/stretch.tex |