summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/acmart
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-04-01 20:15:11 +0000
committerKarl Berry <karl@freefriends.org>2024-04-01 20:15:11 +0000
commit8fbe7007ff45c274bbcff2a6c6723cb0585f26cd (patch)
tree1a15819aaf87593c72f147a69d336680ef3498f9 /Master/texmf-dist/source/latex/acmart
parent6950f337eff48b38febf347f1197f53c45495a82 (diff)
acmart (1apr24)
git-svn-id: svn://tug.org/texlive/trunk@70830 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/acmart')
-rw-r--r--Master/texmf-dist/source/latex/acmart/Makefile44
-rw-r--r--Master/texmf-dist/source/latex/acmart/acmart.dtx15
2 files changed, 35 insertions, 24 deletions
diff --git a/Master/texmf-dist/source/latex/acmart/Makefile b/Master/texmf-dist/source/latex/acmart/Makefile
index 832265701d4..545e505ed56 100644
--- a/Master/texmf-dist/source/latex/acmart/Makefile
+++ b/Master/texmf-dist/source/latex/acmart/Makefile
@@ -8,6 +8,8 @@
PACKAGE=acmart
+DEV=-dev # To switch dev on
+#DEV=
PDF = $(PACKAGE).pdf acmguide.pdf
@@ -70,45 +72,47 @@ samples/%.cbx: %.cbx
samples/%.dbx: %.dbx
samples/%.lbx: %.lbx
+
+
samples/%.pdf: samples/%.tex samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst
- cd $(dir $@) && pdflatex-dev $(notdir $<)
+ cd $(dir $@) && pdflatex${DEV} $(notdir $<)
- cd $(dir $@) && bibtex $(notdir $(basename $<))
- cd $(dir $@) && pdflatex-dev $(notdir $<)
- cd $(dir $@) && pdflatex-dev $(notdir $<)
+ 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
+ do cd $(dir $@) && pdflatex${DEV} $(notdir $<); done
samples/sample-sigconf-biblatex.pdf: samples/sample-sigconf-biblatex.tex $(SAMPLEBIBLATEXFILES)
- cd $(dir $@) && pdflatex-dev $(notdir $<)
+ cd $(dir $@) && pdflatex${DEV} $(notdir $<)
- cd $(dir $@) && biber $(notdir $(basename $<))
- cd $(dir $@) && pdflatex-dev $(notdir $<)
- cd $(dir $@) && pdflatex-dev $(notdir $<)
+ 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
+ do cd $(dir $@) && pdflatex${DEV} $(notdir $<); done
samples/sample-acmsmall-biblatex.pdf: samples/sample-acmsmall-biblatex.tex $(SAMPLEBIBLATEXFILES)
- cd $(dir $@) && pdflatex-dev $(notdir $<)
+ cd $(dir $@) && pdflatex${DEV} $(notdir $<)
- cd $(dir $@) && biber $(notdir $(basename $<))
- cd $(dir $@) && pdflatex-dev $(notdir $<)
- cd $(dir $@) && pdflatex-dev $(notdir $<)
+ 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
+ do cd $(dir $@) && pdflatex${DEV} $(notdir $<); done
samples/sample-sigconf-xelatex.pdf: samples/sample-xelatex.tex samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst
- cd $(dir $@) && xelatex-dev $(notdir $<)
+ cd $(dir $@) && xelatex${DEV} $(notdir $<)
- cd $(dir $@) && bibtex $(notdir $(basename $<))
- cd $(dir $@) && xelatex-dev $(notdir $<)
- cd $(dir $@) && xelatex-dev $(notdir $<)
+ 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
+ do cd $(dir $@) && xelatex${DEV} $(notdir $<); done
samples/sample-sigconf-lualatex.pdf: samples/sample-lualatex.tex samples/$(PACKAGE).cls samples/ACM-Reference-Format.bst
- cd $(dir $@) && lualatex-dev $(notdir $<)
+ cd $(dir $@) && lualatex${DEV} $(notdir $<)
- cd $(dir $@) && bibtex $(notdir $(basename $<))
- cd $(dir $@) && lualatex-dev $(notdir $<)
- cd $(dir $@) && lualatex-dev $(notdir $<)
+ 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
+ do cd $(dir $@) && lualatex${DEV} $(notdir $<); done
samples/sample-acmcp.pdf: samples/acm-jdslogo.png
diff --git a/Master/texmf-dist/source/latex/acmart/acmart.dtx b/Master/texmf-dist/source/latex/acmart/acmart.dtx
index 11c9b1eca12..61251bff30e 100644
--- a/Master/texmf-dist/source/latex/acmart/acmart.dtx
+++ b/Master/texmf-dist/source/latex/acmart/acmart.dtx
@@ -2309,7 +2309,7 @@
\ProvidesFile{acmart.dtx}
%</gobble>
%<class>\ProvidesClass{acmart}
-[2024/02/04 v2.03 Typesetting articles for the Association for Computing Machinery]
+[2024/03/31 v2.04 Typesetting articles for the Association for Computing Machinery]
% \end{macrocode}
%
% \changes{v1.00}{2016/04/14}{First released version}
@@ -3526,6 +3526,10 @@
% \changes{v1.76}{2021/02/21}{Moved hyperxmp before hyperref, see
% \url{https://github.com/borisveytsman/acmart/issues/425}}
% \changes{1.92}{2023/10/14}{Moved hyperxmp again due to kernel update}
+% \changes{2.04}{2024/03/17}{Explicitly load ifdraft since hyperxmp
+% tries to load it inside a group}
+% \changes{2.04}{2024/03/31}{Deleted loading ifdraft due to the new
+% release of hyperxmp}
% \begin{macrocode}
\let\@footnotemark@nolink\@footnotemark
\let\@footnotetext@nolink\@footnotetext
@@ -4797,12 +4801,13 @@
% \end{macro}
%
% The defaults:
+% \changes{v2.04}{2024/03/17}{eISSN is printed, rather than pSSN}
% \begin{macrocode}
\def\@journalCode@nr{0}
\def\@journalName{}%
\def\@journalNameShort{\@journalName}%
\def\@permissionCodeOne{XXXX-XXXX}%
-\def\@permissionCodeTwo{}%
+\def\@permissionCodeTwo{\@permissionCodeOne}%
% \end{macrocode}
%
%
@@ -5895,6 +5900,7 @@
% \changes{v1.52}{2018/04/09}{Rewording of licenses}
% \changes{v1.85}{2022/05/08}{Added CC licenses}
% \changes{v2.00}{2023/10/22}{Changed wording}
+% \changes{v2.04}{2024/03/28}{Changed wording}
% Here is the owner of the copyright
% \begin{macrocode}
\def\@copyrightowner{%
@@ -5985,6 +5991,7 @@
% \changes{v1.87}{2022/07/30}{CC licenses now are allowed only for
% non-acm or ACM engage publications}
% \changes{v2.00}{2023/10/24}{Rewrote wording}
+% \changes{v2.00}{2023/10/24}{Rewrote wording}
% The canned permission block.
% \begin{macrocode}
\def\@copyrightpermission{%
@@ -6012,7 +6019,7 @@
and\hspace*{.5pt}/or a fee. Request permissions from
permissions@acm.org.
\or % rightsretained
- Permission to make digital or hard copies of part or all of this
+ Permission to make digital or hard copies of all or part of this
work for personal or classroom use is granted without fee provided
that copies are not made or distributed for profit or commercial
advantage and that copies bear this notice and the full citation on
@@ -6406,7 +6413,7 @@
\else
\if@ACM@nonacm\else
\if@ACM@journal@bibstrip
- ACM~\@permissionCodeOne/\@acmYear/\@acmMonth-ART\@acmArticle\\
+ ACM~\@permissionCodeTwo/\@acmYear/\@acmMonth-ART\@acmArticle\\
\@formatdoi{\@acmDOI}%
\else % Conference
\ifx\@acmISBN\@empty\else ACM~ISBN~\@acmISBN\\\fi