From 287c4ade701dca1447f7de6ecf5b7ef216b7a794 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Sat, 30 Mar 2019 21:25:18 +0000 Subject: acmart (30mar19) git-svn-id: svn://tug.org/texlive/trunk@50662 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/latex/acmart/Makefile | 132 --------------------- Master/texmf-dist/doc/latex/acmart/README | 27 +++-- Master/texmf-dist/doc/latex/acmart/acmart.bib | 4 +- Master/texmf-dist/doc/latex/acmart/acmart.pdf | Bin 807819 -> 837517 bytes Master/texmf-dist/doc/latex/acmart/acmguide.pdf | Bin 420512 -> 420544 bytes .../doc/latex/acmart/samples/sample-acmlarge.pdf | Bin 653152 -> 653078 bytes .../doc/latex/acmart/samples/sample-acmlarge.tex | 8 +- .../doc/latex/acmart/samples/sample-acmsmall.pdf | Bin 663864 -> 663812 bytes .../doc/latex/acmart/samples/sample-acmsmall.tex | 8 +- .../doc/latex/acmart/samples/sample-acmtog.pdf | Bin 610229 -> 611093 bytes .../doc/latex/acmart/samples/sample-acmtog.tex | 10 +- .../latex/acmart/samples/sample-authordraft.pdf | Bin 1091955 -> 1091915 bytes .../latex/acmart/samples/sample-authordraft.tex | 8 +- .../doc/latex/acmart/samples/sample-manuscript.pdf | Bin 662981 -> 662923 bytes .../doc/latex/acmart/samples/sample-manuscript.tex | 8 +- .../doc/latex/acmart/samples/sample-sigchi-a.pdf | Bin 552870 -> 550456 bytes .../doc/latex/acmart/samples/sample-sigchi-a.tex | 8 +- .../doc/latex/acmart/samples/sample-sigchi.pdf | Bin 1099182 -> 1099133 bytes .../doc/latex/acmart/samples/sample-sigchi.tex | 8 +- .../doc/latex/acmart/samples/sample-sigconf.pdf | Bin 1087504 -> 1087463 bytes .../doc/latex/acmart/samples/sample-sigconf.tex | 8 +- .../doc/latex/acmart/samples/sample-sigplan.pdf | Bin 1096748 -> 1096686 bytes .../doc/latex/acmart/samples/sample-sigplan.tex | 8 +- .../doc/latex/acmart/samples/sample-xelatex.pdf | Bin 627974 -> 629043 bytes .../doc/latex/acmart/samples/sample-xelatex.tex | 8 +- 25 files changed, 68 insertions(+), 177 deletions(-) delete mode 100644 Master/texmf-dist/doc/latex/acmart/Makefile (limited to 'Master/texmf-dist/doc/latex') diff --git a/Master/texmf-dist/doc/latex/acmart/Makefile b/Master/texmf-dist/doc/latex/acmart/Makefile deleted file mode 100644 index 1a2d27dfdb6..00000000000 --- a/Master/texmf-dist/doc/latex/acmart/Makefile +++ /dev/null @@ -1,132 +0,0 @@ -# -# 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 - -SAMPLES = \ - samples/sample-manuscript.tex \ - samples/sample-acmsmall.tex \ - samples/sample-acmlarge.tex \ - samples/sample-acmtog.tex \ - samples/sample-sigconf.tex \ - samples/sample-authordraft.tex \ - samples/sample-xelatex.tex \ - samples/sample-sigplan.tex \ - samples/sample-sigchi.tex \ - samples/sample-sigchi-a.tex - - -PDF = $(PACKAGE).pdf ${SAMPLES:%.tex=%.pdf} acmguide.pdf - -all: ${PDF} - - -%.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 $< - -samples/%: % - cp $^ samples - -samples/sample-acmsmall.tex: samples/sample-manuscript.tex - sed 's/documentclass\[manuscript,screen\]{acmart}/documentclass[acmsmall]{acmart}/' $< > $@ - -samples/sample-acmlarge.tex: samples/sample-manuscript.tex - sed 's/documentclass\[manuscript,screen\]{acmart}/documentclass[acmlarge,screen]{acmart}/' $< > $@ - -samples/sample-acmtog.tex: samples/sample-manuscript.tex - sed 's/documentclass\[manuscript,screen\]{acmart}/documentclass[acmtog]{acmart}/' $< > $@ - -samples/sample-sigconf.tex: samples/sample-manuscript.tex - sed 's/documentclass\[manuscript,screen\]{acmart}/documentclass[sigconf]{acmart}/' $< | sed 's/^%%//' > $@ - -samples/sample-authordraft.tex: samples/sample-manuscript.tex - sed 's/documentclass\[manuscript,screen\]{acmart}/documentclass[sigconf,authordraft]{acmart}/' $< | sed 's/^%%//' > $@ - -samples/sample-xelatex.tex: samples/sample-sigconf.tex - cp $< $@ - -samples/sample-sigplan.tex: samples/sample-manuscript.tex - sed 's/documentclass\[manuscript,screen\]{acmart}/documentclass[sigplan,screen]{acmart}/' $< | sed 's/^%%//' > $@ - -samples/sample-sigchi.tex: samples/sample-manuscript.tex - sed 's/documentclass\[manuscript,screen\]{acmart}/documentclass[sigchi]{acmart}/' $< | sed 's/^%%//' > $@ - -samples/sample-sigchi-a.tex: samples/sample-manuscript.tex - sed 's/documentclass\[manuscript,screen\]{acmart}/documentclass[sigchi-a]{acmart}/' $< | \ - sed 's/begin{figure}\[h\]/begin{marginfigure}/' | \ - sed 's/end{figure}/end{marginfigure}/' | \ - sed 's/begin{table}/begin{margintable}/' | \ - sed 's/end{table}/end{margintable}/' > $@ - - -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 $(notdir $<) - - cd $(dir $@) && bibtex $(notdir $(basename $<)) - cd $(dir $@) && pdflatex $(notdir $<) - cd $(dir $@) && pdflatex $(notdir $<) - while ( grep -q '^LaTeX Warning: Label(s) may have changed' $(basename $<).log) \ - do cd $(dir $@) && pdflatex $(notdir $<); done - -samples/sample-xelatex.pdf: samples/sample-xelatex.tex samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst - cd $(dir $@) && xelatex $(notdir $<) - - cd $(dir $@) && bibtex $(notdir $(basename $<)) - cd $(dir $@) && xelatex $(notdir $<) - cd $(dir $@) && xelatex $(notdir $<) - while ( grep -q '^LaTeX Warning: Label(s) may have changed' $(basename $<).log) \ - do cd $(dir $@) && xelatex $(notdir $<); done - - - -.PRECIOUS: $(PACKAGE).cfg $(PACKAGE).cls - - -clean: - $(RM) $(PACKAGE).cls *.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 - -distclean: clean - - -# -# 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 - zip $@ acmart.pdf acmguide.pdf samples/sample-*.pdf *.cls *.bst diff --git a/Master/texmf-dist/doc/latex/acmart/README b/Master/texmf-dist/doc/latex/acmart/README index 51e61a8c5e7..538a730c8d8 100644 --- a/Master/texmf-dist/doc/latex/acmart/README +++ b/Master/texmf-dist/doc/latex/acmart/README @@ -187,7 +187,7 @@ Version 1.52 Another rewording of licenses Version 1.53 New journals: PACMCGIT, TIOT, TDSCI -Version 1.54 New option: 'noacm' (Gabriel Scherer) +Version 1.54 New option: 'nonacm' (Gabriel Scherer) Deleted indent for subsubsection (suggested by Ross Moore) Suppressed some obscurious warning in BibTeX processing Suppressed hyperrerf warnings (Paolo G. Giarrusso) @@ -197,18 +197,21 @@ Version 1.54 New option: 'noacm' (Gabriel Scherer) Bug fixes Version 1.55 Bug fixes - Font changes for SIGCHI table captions - + Font changes for SIGCHI table captions Version 1.56 Bug fixes - Added \flushbottom to two column formats (Philip Quinn) - The final punctuation for the list of concepts - is now period instead of semilcolon (Philip Quinn) - New command \Description to describe images for visually - impaired users. + Added \flushbottom to two column formats (Philip Quinn) + The final punctuation for the list of concepts + is now a period instead of a semicolon (Philip Quinn) + New command \Description to describe images for visually + impaired users. Version 1.57 Change of \baselinestretch now produces an error - Booktabs is now always loaded - Added option `balance' to balance last page in two-column mode - E-mail is no longer split in addresses - New samples (Stephen Spencer) \ No newline at end of file + Booktabs is now always loaded + Added option `balance' to balance last page in two-column mode + E-mail is no longer split in addresses + New samples (Stephen Spencer) + +Version 1.58 Suppressed spurious warnings. + New journal: HEALTH. + TDSCI is renamed to TDS. diff --git a/Master/texmf-dist/doc/latex/acmart/acmart.bib b/Master/texmf-dist/doc/latex/acmart/acmart.bib index f323abe28cc..a2704396c83 100644 --- a/Master/texmf-dist/doc/latex/acmart/acmart.bib +++ b/Master/texmf-dist/doc/latex/acmart/acmart.bib @@ -1,8 +1,8 @@ @Misc{TeXFAQ, title = {{UK} List of {\TeX} Frequently Asked Questions}, author = {{UK \TeX{} Users Group}}, - year = 2016, - howpublished = {\url{http://www.tex.ac.uk}} + year = 2019, + howpublished = {\url{https://texfaq.org}} } @Manual{Downes04:amsart, diff --git a/Master/texmf-dist/doc/latex/acmart/acmart.pdf b/Master/texmf-dist/doc/latex/acmart/acmart.pdf index 4677f1f1a23..8d92a5adc5a 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/acmart.pdf and b/Master/texmf-dist/doc/latex/acmart/acmart.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/acmguide.pdf b/Master/texmf-dist/doc/latex/acmart/acmguide.pdf index 145bffce838..11b052a846e 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/acmguide.pdf and b/Master/texmf-dist/doc/latex/acmart/acmguide.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmlarge.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmlarge.pdf index 093e9a58d88..fe83ca5cc63 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmlarge.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmlarge.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmlarge.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmlarge.tex index b0e52af6614..9db49a3ef79 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmlarge.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmlarge.tex @@ -3,9 +3,11 @@ \documentclass[acmlarge,screen]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmsmall.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmsmall.pdf index d8c5148f75b..5967c7226cd 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmsmall.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmsmall.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmsmall.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmsmall.tex index b465f524b02..3fcc200b656 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmsmall.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmsmall.tex @@ -3,9 +3,11 @@ \documentclass[acmsmall]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmtog.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmtog.pdf index fbfcf63c7ee..ecea961d76b 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmtog.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmtog.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmtog.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmtog.tex index 7ed7eeca556..e9c0f336e54 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-acmtog.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-acmtog.tex @@ -3,9 +3,11 @@ \documentclass[acmtog]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace @@ -38,7 +40,7 @@ % The majority of ACM publications use numbered citations and references. If you are preparing content for an event % sponsored by ACM SIGGRAPH, you must use the "author year" style of citations and references. Uncommenting % the next command will enable that style. -%\citestyle{acmauthoryear} +\citestyle{acmauthoryear} % % end of the preamble, start of the body of the document source. diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-authordraft.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-authordraft.pdf index c51c9a5a51c..85e20874b69 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-authordraft.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-authordraft.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-authordraft.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-authordraft.tex index 1fadb06c573..83e6396c8c9 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-authordraft.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-authordraft.tex @@ -3,9 +3,11 @@ \documentclass[sigconf,authordraft]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-manuscript.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-manuscript.pdf index 2b845f0fe11..d22ffc23900 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-manuscript.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-manuscript.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-manuscript.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-manuscript.tex index 2d8932754a9..0b80dbbc3a5 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-manuscript.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-manuscript.tex @@ -3,9 +3,11 @@ \documentclass[manuscript,screen]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi-a.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi-a.pdf index 88248bc9d8c..c81423fb9c2 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi-a.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi-a.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi-a.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi-a.tex index af9b8a66aa9..3c75c2c88ed 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi-a.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi-a.tex @@ -3,9 +3,11 @@ \documentclass[sigchi-a]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi.pdf index 365d79701aa..bc33a56a566 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi.tex index 1b14f8525d9..a07df290e3f 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigchi.tex @@ -3,9 +3,11 @@ \documentclass[sigchi]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigconf.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigconf.pdf index 7bf50901acf..5975d59e3f3 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigconf.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigconf.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigconf.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigconf.tex index 48ff0fb3d07..d0f9b3831c9 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigconf.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigconf.tex @@ -3,9 +3,11 @@ \documentclass[sigconf]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigplan.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigplan.pdf index b3d4a37c09f..36c1bc3d561 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigplan.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigplan.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigplan.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigplan.tex index 2b4560ed427..510fea7b13b 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-sigplan.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-sigplan.tex @@ -3,9 +3,11 @@ \documentclass[sigplan,screen]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-xelatex.pdf b/Master/texmf-dist/doc/latex/acmart/samples/sample-xelatex.pdf index eaf2ed48a6a..dd619e8243a 100644 Binary files a/Master/texmf-dist/doc/latex/acmart/samples/sample-xelatex.pdf and b/Master/texmf-dist/doc/latex/acmart/samples/sample-xelatex.pdf differ diff --git a/Master/texmf-dist/doc/latex/acmart/samples/sample-xelatex.tex b/Master/texmf-dist/doc/latex/acmart/samples/sample-xelatex.tex index 48ff0fb3d07..d0f9b3831c9 100644 --- a/Master/texmf-dist/doc/latex/acmart/samples/sample-xelatex.tex +++ b/Master/texmf-dist/doc/latex/acmart/samples/sample-xelatex.tex @@ -3,9 +3,11 @@ \documentclass[sigconf]{acmart} % -% defining the \BibTeX command - from Oren Patashnik's original BibTeX documentation. -\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08emT\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} - +% \BibTeX command to typeset BibTeX logo in the docs +\AtBeginDocument{% + \providecommand\BibTeX{{% + \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}} + % Rights management information. % This information is sent to you when you complete the rights form. % These commands have SAMPLE values in them; it is your responsibility as an author to replace -- cgit v1.2.3