Adding elsarticle

This commit is contained in:
Jay McCarthy 2016-06-16 16:37:01 -04:00
parent c34a69c623
commit 06e254f169
5 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,2 @@
# to avoid committing it by accident, since we can't distribute it
/elsarticle.cls

View File

@ -0,0 +1,5 @@
\newcommand{\ELSauthor}[1]{\author{#1}}
\newcommand{\ELSaddress}[1]{\address{#1}}
\newcommand{\ELSemail}[1]{\ead{#1}}
\newcommand{\ELSabstract}[1]{\begin{abstract}#1\end{abstract}}

View File

@ -0,0 +1,68 @@
#lang racket/base
(require scribble/doclang
scribble/core
racket/file
(except-in scribble/base author)
(prefix-in s/b: scribble/base)
scribble/decode
"../private/defaults.rkt"
setup/collects
scribble/html-properties
scribble/latex-properties
scribble/latex-prefix
racket/stxparam
net/ftp
file/gunzip
(for-syntax racket/base
racket/list
racket/stxparam-exptime))
(module test racket/base)
(provide (except-out (all-from-out scribble/doclang) #%module-begin)
(all-from-out scribble/base)
(rename-out [module-begin #%module-begin])
frontmatter
abstract author email address)
(define-syntax (module-begin stx)
;; No options, currently, but keep in case we want to support some:
(syntax-case* stx () (lambda (a b) (eq? (syntax-e a) (syntax-e b)))
[(_ id ws . body)
;; Skip intraline whitespace to find options:
(and (string? (syntax-e #'ws))
(regexp-match? #rx"^ *$" (syntax-e #'ws)))
#'(module-begin id . body)]
[(_ id . body)
#'(#%module-begin id (post-process) () . body)]))
(define ((post-process) doc)
(add-defaults doc
(string->bytes/utf-8 (string-append "\\documentclass{elsarticle}\n"
unicode-encoding-packages))
(scribble-file "elsarticle/style.tex")
'()
#f))
(define elsarticle-extras
(let ([abs (lambda (s)
(path->collects-relative
(collection-file-path s "scribble" "elsarticle")))])
(list
(make-tex-addition (abs "elsarticle.tex")))))
(define (LaTeX-element i)
(λ strs
(make-element (style i elsarticle-extras)
;; XXX maybe decode-content
(decode-content strs))))
(define abstract (LaTeX-element "ELSabstract"))
(define author (LaTeX-element "ELSauthor"))
(define address (LaTeX-element "ELSaddress"))
(define email (LaTeX-element "ELSemail"))
(define (frontmatter #:authors as
#:abstract a)
(paragraph (style 'author '())
(append as (list a))))

View File

@ -0,0 +1,3 @@
#lang s-exp scribble/base/reader
scribble/elsarticle/lang
#:wrapper1 (lambda (t) (cons 'doc (t)))

View File

@ -0,0 +1,3 @@
\renewcommand{\titleAndVersionAndAuthors}[3]{\begin{frontmatter}\title{#1}#3\end{frontmatter}}
\renewcommand{\titleAndEmptyVersionAndAuthors}[3]{\titleAndVersionAndAuthors{#1}{#1}{#3}}