-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #943 from agitter/latex
Add LaTeX export for ACM-BCB
- Loading branch information
Showing
20 changed files
with
11,830 additions
and
23 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
3,063 changes: 3,063 additions & 0 deletions
3,063
build/assets/acmart-master/ACM-Reference-Format.bst
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
\ProvidesFile{ACM-Reference-Format.cbx}[2017-09-27 v0.1] | ||
|
||
\RequireCitationStyle{numeric} | ||
|
||
\endinput |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
% Teach biblatex about numpages field | ||
\DeclareDatamodelFields[type=field, datatype=literal]{numpages} | ||
\DeclareDatamodelEntryfields{numpages} | ||
|
||
% Teach biblatex about articleno field | ||
\DeclareDatamodelFields[type=field, datatype=literal]{articleno} | ||
\DeclareDatamodelEntryfields{articleno} | ||
|
||
% Teach biblatex about urls field | ||
\DeclareDatamodelFields[type=list, datatype=uri]{urls} | ||
\DeclareDatamodelEntryfields{urls} | ||
|
||
% Teach biblatex about school field | ||
\DeclareDatamodelFields[type=list, datatype=literal]{school} | ||
\DeclareDatamodelEntryfields[thesis]{school} | ||
|
||
\DeclareDatamodelFields[type=field, datatype=literal]{key} | ||
\DeclareDatamodelEntryfields{key} |
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 |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# | ||
# Makefile for acmart package | ||
# | ||
# This file is in public domain | ||
# | ||
# $Id: Makefile,v 1.10 2016/04/14 21:55:57 boris Exp $ | ||
# | ||
|
||
PACKAGE=acmart | ||
|
||
|
||
PDF = $(PACKAGE).pdf acmguide.pdf | ||
|
||
all: ${PDF} ALLSAMPLES | ||
|
||
|
||
%.pdf: %.dtx $(PACKAGE).cls | ||
pdflatex $< | ||
- bibtex $* | ||
pdflatex $< | ||
- makeindex -s gind.ist -o $*.ind $*.idx | ||
- makeindex -s gglo.ist -o $*.gls $*.glo | ||
pdflatex $< | ||
while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log) \ | ||
do pdflatex $<; done | ||
|
||
|
||
acmguide.pdf: $(PACKAGE).dtx $(PACKAGE).cls | ||
pdflatex -jobname acmguide $(PACKAGE).dtx | ||
- bibtex acmguide | ||
pdflatex -jobname acmguide $(PACKAGE).dtx | ||
while ( grep -q '^LaTeX Warning: Label(s) may have changed' acmguide.log) \ | ||
do pdflatex -jobname acmguide $(PACKAGE).dtx; done | ||
|
||
%.cls: %.ins %.dtx | ||
pdflatex $< | ||
|
||
|
||
ALLSAMPLES: | ||
cd samples; pdflatex samples.ins; cd .. | ||
for texfile in samples/*.tex; do \ | ||
pdffile=$${texfile%.tex}.pdf; \ | ||
${MAKE} $$pdffile; \ | ||
done | ||
|
||
samples/%: % | ||
cp $^ samples | ||
|
||
|
||
samples/$(PACKAGE).cls: $(PACKAGE).cls | ||
samples/ACM-Reference-Format.bst: ACM-Reference-Format.bst | ||
|
||
samples/%.pdf: samples/%.tex samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst | ||
cd $(dir $@) && pdflatex-dev $(notdir $<) | ||
- cd $(dir $@) && bibtex $(notdir $(basename $<)) | ||
cd $(dir $@) && pdflatex-dev $(notdir $<) | ||
cd $(dir $@) && pdflatex-dev $(notdir $<) | ||
while ( grep -q '^LaTeX Warning: Label(s) may have changed' $(basename $<).log) \ | ||
do cd $(dir $@) && pdflatex-dev $(notdir $<); done | ||
|
||
samples/sample-xelatex.pdf: samples/sample-xelatex.tex samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst | ||
cd $(dir $@) && xelatex-dev $(notdir $<) | ||
- cd $(dir $@) && bibtex $(notdir $(basename $<)) | ||
cd $(dir $@) && xelatex-dev $(notdir $<) | ||
cd $(dir $@) && xelatex-dev $(notdir $<) | ||
while ( grep -q '^LaTeX Warning: Label(s) may have changed' $(basename $<).log) \ | ||
do cd $(dir $@) && xelatex-dev $(notdir $<); done | ||
|
||
samples/sample-lualatex.pdf: samples/sample-lualatex.tex samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst | ||
cd $(dir $@) && lualatex-dev $(notdir $<) | ||
- cd $(dir $@) && bibtex $(notdir $(basename $<)) | ||
cd $(dir $@) && lualatex-dev $(notdir $<) | ||
cd $(dir $@) && lualatex-dev $(notdir $<) | ||
while ( grep -q '^LaTeX Warning: Label(s) may have changed' $(basename $<).log) \ | ||
do cd $(dir $@) && lualatex-dev $(notdir $<); done | ||
|
||
|
||
|
||
.PRECIOUS: $(PACKAGE).cfg $(PACKAGE).cls | ||
|
||
docclean: | ||
$(RM) *.log *.aux \ | ||
*.cfg *.glo *.idx *.toc \ | ||
*.ilg *.ind *.out *.lof \ | ||
*.lot *.bbl *.blg *.gls *.cut *.hd \ | ||
*.dvi *.ps *.thm *.tgz *.zip *.rpi \ | ||
samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst \ | ||
samples/*.log samples/*.aux samples/*.out \ | ||
samples/*.bbl samples/*.blg samples/*.cut | ||
|
||
|
||
|
||
clean: docclean | ||
$(RM) $(PACKAGE).cls \ | ||
samples/*.tex | ||
|
||
distclean: clean | ||
$(RM) *.pdf samples/sample-*.pdf | ||
|
||
# | ||
# Archive for the distribution. Includes typeset documentation | ||
# | ||
archive: all clean | ||
COPYFILE_DISABLE=1 tar -C .. -czvf ../$(PACKAGE).tgz --exclude '*~' --exclude '*.tgz' --exclude '*.zip' --exclude CVS --exclude '.git*' $(PACKAGE); mv ../$(PACKAGE).tgz . | ||
|
||
zip: all clean | ||
zip -r $(PACKAGE).zip * -x '*~' -x '*.tgz' -x '*.zip' -x CVS -x 'CVS/*' | ||
|
||
documents.zip: all docclean | ||
zip -r $@ acmart.pdf acmguide.pdf samples *.cls ACM-Reference-Format.* | ||
|
||
.PHONY: all ALLSAMPLES docclean clean distclean archive zip |
Oops, something went wrong.