diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:01:31 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:17 +0200 |
commit | 401e9905258f4976b74f79f485d13648aa67bdb4 (patch) | |
tree | 57f0cbd080c7a08c0cc1621f5fdb477b0f9c514e | |
parent | a3cedd490312b867c16c2963f5a85dcc4803f53f (diff) | |
download | guix-401e9905258f4976b74f79f485d13648aa67bdb4.tar.gz |
gnu: Add texlive-snaptodo.
* gnu/packages/tex.scm (texlive-snaptodo): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f1b9f72fd2..281500307f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -96074,6 +96074,27 @@ a document during the final stages of its production cycle from unexpected side effects of routine upgrades to the TeX system.") (license license:lppl1.3c))) +(define-public texlive-snaptodo + (package + (name "texlive-snaptodo") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/snaptodo/" "tex/latex/snaptodo/") + (base32 + "0iya0njq8icvf084ifs76hhbbc50h9livsp499v85r9x77hblmlf"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/snaptodo") + (synopsis "Todo that snaps to the closer side") + (description + "This package is an alternative to @code{todonotes}, from which it differs in +the following ways: depending on where you call @code{\\snaptodo}, the note is +put in the left or the right margin, whichever is closer. The notes bump each +other so they never overlap; the lines never overlap either. Aesthetic and +customizable style.") + (license license:lppl1.3c))) + ;;; ;;; 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 |