angularjs 网站中使用Mathjax-angular的数学方程

n1bvdmb6  于 2023-03-22  发布在  Angular
关注(0)|答案(1)|浏览(188)

我试图将乳胶格式的数学方程转换为网站在角13应用程序。我发现mathjax-angular为此,并试图安装使用

npm install mathjax-angular

但我得到了一些peer dependency错误如下。

npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: metric-tutorial@0.0.0
npm ERR! Found: @angular/common@13.3.12
npm ERR! node_modules/@angular/common
npm ERR!   @angular/common@"~13.3.0" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @angular/common@"^14.0.0" from mathjax-angular@2.1.1
npm ERR! node_modules/mathjax-angular
npm ERR!   mathjax-angular@"*" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!

你对这个问题有什么建议?你有什么建议把latex转换成网站的数学符号吗?

e4yzc0pl

e4yzc0pl1#

从这个answer
这是npm版本的一个问题。在旧版本中,遗留的对等依赖冲突被忽略,在新版本中发生了变化。
运行:

npm install mathjax-angular --legacy-peer-deps

相关问题