mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add texlive-notespages.
* gnu/packages/tex.scm (texlive-notespages): New variable.
This commit is contained in:
parent
aadf2cffb9
commit
21cf4d54d8
1 changed files with 32 additions and 0 deletions
|
@ -90519,6 +90519,38 @@ (define-public texlive-notes
|
||||||
margin.")
|
margin.")
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
|
(define-public texlive-notespages
|
||||||
|
(package
|
||||||
|
(name "texlive-notespages")
|
||||||
|
(version (number->string %texlive-revision))
|
||||||
|
(source (texlive-origin
|
||||||
|
name version
|
||||||
|
(list "doc/latex/notespages/"
|
||||||
|
"source/latex/notespages/"
|
||||||
|
"tex/latex/notespages/")
|
||||||
|
(base32
|
||||||
|
"14q6rjkbnhnj7fbw3vsnnxp08qm3w9vax6s22g20qclh3q1x2ll6")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
|
(build-system texlive-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; Do not stop build to ask about building part of the
|
||||||
|
;; documentation.
|
||||||
|
(add-after 'unpack 'non-interactive-build
|
||||||
|
(lambda _
|
||||||
|
(substitute* "source/latex/notespages/notespages.ins"
|
||||||
|
(("\\\\generateexampletrue") "\\generateexamplefalse")))))))
|
||||||
|
(home-page "https://ctan.org/pkg/notespages")
|
||||||
|
(synopsis "Filling documents with notes pages and notes areas")
|
||||||
|
(description
|
||||||
|
"This package package provides one macro to insert a single notes page and
|
||||||
|
another to fill the document with multiple notes pages, until the total number
|
||||||
|
of pages (so far) is a multiple of a given number. A third command can be
|
||||||
|
used to fill half empty pages with a notes area.")
|
||||||
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||||
;;; of a merge conflict, place them above by existing packages with similar
|
;;; of a merge conflict, place them above by existing packages with similar
|
||||||
|
|
Loading…
Reference in a new issue