mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add texlive-latex-seminar.
* gnu/packages/tex.scm (texlive-latex-seminar): New variable.
This commit is contained in:
parent
9b416042d1
commit
171160d569
1 changed files with 27 additions and 0 deletions
|
@ -1469,6 +1469,33 @@ (define-public texlive-latex-natbib
|
||||||
designed from the start to be compatible with @code{natbib}.")
|
designed from the start to be compatible with @code{natbib}.")
|
||||||
(license license:lppl)))
|
(license license:lppl)))
|
||||||
|
|
||||||
|
(define-public texlive-latex-seminar
|
||||||
|
(package
|
||||||
|
(name "texlive-latex-seminar")
|
||||||
|
(version (number->string %texlive-revision))
|
||||||
|
(source (origin
|
||||||
|
(method svn-fetch)
|
||||||
|
(uri (svn-reference
|
||||||
|
(url (string-append "svn://www.tug.org/texlive/tags/"
|
||||||
|
%texlive-tag "/Master/texmf-dist/"
|
||||||
|
"/tex/latex/seminar"))
|
||||||
|
(revision %texlive-revision)))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0y4i651b75y6006n03x8n86bsqvjsailvvz9bhzy51dzsznqidq0"))))
|
||||||
|
(build-system texlive-build-system)
|
||||||
|
(arguments '(#:tex-directory "latex/seminar"))
|
||||||
|
(home-page "http://www.ctan.org/pkg/seminar")
|
||||||
|
(synopsis "Make overhead slides")
|
||||||
|
;; TODO: This package may need fancybox and xcomment at runtime.
|
||||||
|
(description
|
||||||
|
"This package provides a class that produces overhead
|
||||||
|
slides (transparencies), with many facilities. Seminar is not nowadays
|
||||||
|
reckoned a good basis for a presentation — users are advised to use more
|
||||||
|
recent classes such as powerdot or beamer, both of which are tuned to
|
||||||
|
21st-century presentation styles.")
|
||||||
|
(license license:lppl1.2+)))
|
||||||
|
|
||||||
(define texlive-texmf
|
(define texlive-texmf
|
||||||
(package
|
(package
|
||||||
(name "texlive-texmf")
|
(name "texlive-texmf")
|
||||||
|
|
Loading…
Reference in a new issue