acmart: add 'shortauthors' function

This commit is contained in:
Ben Greenman 2018-07-28 16:39:07 -04:00
parent 290b3ac370
commit 52334a508b
5 changed files with 24 additions and 2 deletions

View File

@ -271,6 +271,11 @@ screen version of the image links to the badge authority.
@history[#:added "1.26"]}
@defproc[(shortauthors [name pre-content?] ...) element?]{
Sets the text for the names of the authors in the running header.
@history[#:added "1.29"]}
@deftogether[(
@defproc[(terms [content pre-content?] ...) content?]
@defproc[(keywords [content pre-content?] ...) content?]

View File

@ -23,4 +23,4 @@
(define pkg-authors '(mflatt eli))
(define version "1.28")
(define version "1.29")

View File

@ -50,6 +50,10 @@
()
#:rest (listof pre-content?)
block?)]
[shortauthors (->* ()
()
#:rest (listof pre-content?)
element?)]
[institution (->* ()
(#:departments (listof (or/c pre-content? institution?)))
#:rest pre-content?
@ -310,6 +314,10 @@
(make-element (make-style "authorsaddresses" command-props)
(decode-content content))))
(define (shortauthors . content)
(make-element (make-style "Sshortauthors" command-props)
(decode-content content)))
(define (institution #:departments [departments '()]
. name)
(author-institution name departments))

View File

@ -1,4 +1,5 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% BEGIN acmart/acmart.tex
% Support for styles in scribble/acmart
% These are replaced by scribble/acmart/style.tex,
@ -26,3 +27,5 @@
% Use ACM color; it would be better to use `citecolor` here somehow,
% but I can't figure out how to do that
\newcommand{\AutobibLink}[1]{\color{ACMPurple}{#1}}
% END acmart/acmart.tex
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

View File

@ -1,3 +1,5 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% BEGIN acmart/style.tex
\renewcommand{\titleAndVersionAndAuthors}[3]{\title{#1}#3\maketitle}
\renewcommand{\titleAndEmptyVersionAndAuthors}[3]{\titleAndVersionAndAuthors{#1}{#2}{#3}}
@ -37,6 +39,8 @@
\newcommand{\StitleShort}[2]{\title[#1]{#2}}
\newcommand{\Sshortauthors}[1]{\renewcommand{\shortauthors}{#1}}
\newcommand{\SacmBadgeRURL}[2]{\acmBadgeR[#1]{#2}}
\newcommand{\SacmBadgeLURL}[2]{\acmBadgeL[#1]{#2}}
@ -45,3 +49,5 @@
\newcommand{\SreceivedStage}[2]{\received[#1]{#2}}
\newcommand{\SccsdescNumber}[2]{\ccsdesc[#1]{#2}}
% END acmart/style.tex
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%