Re: [Rd] Installation of R-4.3.1 with intel 2022

2023-07-20 Thread Giuseppe Calò
Thanks Prof. Brian, Currently I’m using oneapi 2022.1.0 in particular ifort 2021.6.0 20220226 (not ifx). Thanks for the clarification. Regards, Giuseppe. ——— Giuseppe Calò Fondazione CMCC Centro Euro-Mediterraneo sui Cambiamenti Climatici presso Complesso Ecot

Re: [Rd] Installation of R-4.3.1 with intel 2022

2023-07-20 Thread Giuseppe Calò
Thanks Prof. Brian, Current I’m using oneapi 2022.1.0 in particular ifort 2021.6.0 20220226 (not ifx). Thanks for the clarification. Regards, Giuseppe. ——— Giuseppe Calò Fondazione CMCC Centro Euro-Mediterraneo sui Cambiamenti Climatici presso Complesso Ecot

Re: [Rd] tools::parseLatex() crashes on "\\verb{}"

2023-07-20 Thread Ivan Krylov
On Thu, 20 Jul 2023 21:41:44 +0200 Antoine Fabri wrote: > tools::parseLatex("\\verb{hello}") > # crashes the session Looking at the source [*], this seems to be happening because parseLatex expects the \verb macro to use the same character as the delimiter on both sides: tools::parseLatex('\\ve

[Rd] tools::parseLatex() crashes on "\\verb{}"

2023-07-20 Thread Antoine Fabri
Dear r-devel, I've tried tools::parseLatex() to parse some documentation files, it works generally well but it it has some issues when "\\verb{}" is used. ``` tools::parseLatex("\\code{hello}") # \code{hello} tools::parseLatex("\\anything{hello}") # \anything{hello} tools::parseLatex("\\verb{hel

Re: [Rd] question about an R idiom: eval()ing a quoted block

2023-07-20 Thread peter dalgaard
In the case of power.t.test, there is a situation where you want to create 4 different functions with the same function body, in order to pass them to uniroot(). I think that at the time, it just seemed convenient to express that idea with a quote-eval (macro-like) construction, rather than figu