diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:01:04 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:08 +0200 |
commit | 7ed8f26924369ffcb6482ff6a5cc6134cff861b4 (patch) | |
tree | e84edd9054cf6705eb8cd5a004117c2f9152c34f | |
parent | 039ecfdc872810a591a6f4bb89190a015a4631a5 (diff) | |
download | guix-7ed8f26924369ffcb6482ff6a5cc6134cff861b4.tar.gz |
gnu: Add texlive-showlabels.
* gnu/packages/tex.scm (texlive-showlabels): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9f7ac3ca2c..9e395fed89 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -95547,6 +95547,30 @@ current value of @code{\\baselineskip} rounded to the nearest tenth of a point.") (license license:lppl))) +(define-public texlive-showlabels + (package + (name "texlive-showlabels") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/showlabels/" + "source/latex/showlabels/" + "tex/latex/showlabels/") + (base32 + "0c88yijjfw1xnlcchmsk9965fn464fj5xzi0s9ri13nj8cq7dmsw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/showlabels") + (synopsis "Show label commands in the margin") + (description + "This package helps you keep track of all the labels you define, by putting +the name of new labels into the margin whenever the @code{\\label} command is +used. The package allows you to do the same thing for other commands. The +only one for which this is obviously useful is the @code{\\cite} command, but +it's easy to do it for others, such as the @code{\\ref} or @code{\\begin} +commands.") + (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 |