使用 mathjaxr 在 r 包文档中得到很好的显示

问题描述

我在使用 mathjaxr 包时遇到困难,无法在我的第一个的文档中得到很好的显示

我按照此处给出的说明进行操作:https://rdrr.io/github/wviechtb/mathjaxr/man/mathjaxr-package.html

这是我在函数之前放在 R 文件中的内容

#' Probabilistic principal component analysis :
#' parameter estimation with EM algorithm
#'
#' @param Y les données : une matrice de taille n x p
#' @param Gamma0 point de départ pour l'inférence de Gamma
#'
#' @return la fonction renvoie la moyenne d'un vecteur
#' @import mvtnorm
#' @import psych
#' @import mathjaxr
#' @description 
#' \loadmathjax
#' \mjdeqn{f(x) = \frac{1}{\sqrt{2\pi} \sigma} e^{-\frac{1}{2}\left(\frac{x-\mu}{\sigma}#\right)^2},}
#' {f(x) = 1/(sqrt(2 pi) sigma) e^-((x - mu)^2/(2 sigma^2)),}

这是我的描述文件中的内容

Package: ppcaem
Title: Parameter estimation in ppca model with EM algorithm
Version: 0.0.0.9000
Authors@R: 
    person(given = "First",family = "Last",role = c("aut","cre"),email = "first.last@example.com",comment = c(ORCID = "YOUR-ORCID-ID"))
Description: cf title
RdMacros: mathjaxr
License: GPL-3
Encoding: UTF-8
LazyData: true
Imports: 
    psych,mvtnorm,mathjaxr
RoxygenNote: 7.1.1

这里是渲染的:

mathjaxr

解决方法

我试过不使用 roxygen 并且它有效,如果它可以帮助..