me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-bibtopic.

* gnu/packages/tex.scm (texlive-bibtopic): New variable.
Nicolas Goaziou 2023-08-18 11:52:51 +02:00
parent 596890737e
commit b51cbb90b2
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 28 additions and 0 deletions

View File

@ -4866,6 +4866,34 @@ avoiding the potentially large (macro) impact associated with
license:gpl1 license:gpl1
license:public-domain)))) license:public-domain))))
(define-public texlive-bibtopic
(package
(name "texlive-bibtopic")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/bibtopic/"
"source/latex/bibtopic/"
"tex/latex/bibtopic/")
(base32
"1b4lhlw29y37c7pxmqvy4ahgb85bmxrgnr2jhzvdhzdm5y9md7a3")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(arguments (list #:tex-format "latex"))
(home-page "https://ctan.org/pkg/bibtopic")
(synopsis "Include multiple bibliographies in a document")
(description
"The package allows the user to include several bibliographies covering
different topics or bibliographic material into a document (e.g., one
bibliography for primary literature and one for secondary literature). The
package provides commands to include either all references from a @file{.bib}
file, only the references actually cited or those not cited in your document.
The user has to construct a separate @file{.bib} file for each bibliographic
topic, each of which will be processed separately by BibTeX. If you want to
have bibliographies specific to one part of a document, see the packages
@code{bibunits} or @code{chapterbib}.")
(license license:gpl3+)))
(define-public texlive-binomexp (define-public texlive-binomexp
(package (package
(name "texlive-binomexp") (name "texlive-binomexp")