From: Richard Kreckel Date: Sat, 11 Feb 2023 23:09:48 +0000 (+0100) Subject: [DOC] Fix build of reference.pdf. X-Git-Tag: release_1-8-7~8 X-Git-Url: https://ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=e8bd7a51450cc03faf0225ac4850d925c51275b2 [DOC] Fix build of reference.pdf. This is obnoxious: It is 2023, the ≥ character is in Unicode since 1993, and UTF-8 is ubiquitous. Yet, pdfLaTeX balks at this. Maybe the right fix would be to switch to LuaLaTeX. Alas, that doesn't seem to have reached the necessary maturity yet: --- diff --git a/ginac/numeric.cpp b/ginac/numeric.cpp index c28cc56a..92b3c466 100644 --- a/ginac/numeric.cpp +++ b/ginac/numeric.cpp @@ -2139,7 +2139,7 @@ const numeric doublefactorial(const numeric &n) /** The Binomial coefficients. It computes the binomial coefficients. For * integer n and k and positive n this is the number of ways of choosing k * objects from n distinct objects. If n is a negative integer, the formula - * binomial(n,k) == (-1)^k*binomial(k-n-1,k) (if k≥0) + * binomial(n,k) == (-1)^k*binomial(k-n-1,k) (if k>=0) * binomial(n,k) == (-1)^(n-k)*binomial(-k-1,n-k) (otherwise) * is used to compute the result. */ const numeric binomial(const numeric &n, const numeric &k)