diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:03:22 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:06:57 +0200 |
commit | 68d22faea3b9f053c966fd4b361d3194e11a9781 (patch) | |
tree | b126fb991758a542afd2e18411b095620928ecb6 /gnu | |
parent | 6b421b76188258e840daf55066b4830161cd7df5 (diff) | |
download | guix-68d22faea3b9f053c966fd4b361d3194e11a9781.tar.gz |
gnu: Add texlive-tipauni.
* gnu/packages/tex.scm (texlive-tipauni): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ef012810b3..02ad707b99 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -98190,6 +98190,34 @@ a ticket definition file and the two commands @code{\\ticketdefault} and @code{\\ticket}.") (license license:lppl1.3+))) +(define-public texlive-tipauni + (package + (name "texlive-tipauni") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tipauni/" "source/latex/tipauni/" + "tex/latex/tipauni/") + (base32 + "1wwanhv28azbmx7wsx4xwxr1mbpzxz34kxin8dyl3ds816w0m6ar"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tipauni") + (synopsis "Producing Unicode characters with TIPA commands") + (description + "Package TIPA uses the T3 encoding for producing IPA characters. The package +is widely used in the field of linguistics, but because of the old encoding, +the output documents are less productive than Unicode-based documents. This +package redefines most of the TIPA-commands for outputting Unicode characters. +Users can now use their beloved TIPA shortcuts with the benefits of Unicode, +i.e., searchability, copy-pasting, changing the font and many more. + +As this package needs the @code{fontspec} package for loading an IPA font, it +needs to be compiled with XeLaTeX or LuaLaTeX. This package can also be +viewed as an ASCII-based input method for producing IPA characters in Unicode. +It needs the New Computer Modern font for printing IPA characters.") + (license (list license:gpl3+ license:fdl1.3+)))) + ;;; ;;; 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 |