LyX 中的 Maple 18 输出

LyX 中的 Maple 18 输出

我有以下问题:我想将的结果solve(b^4-(2-d)*b^2-2*d*b+d+1 > 0, [b], parametric)(即枫树代码)导入 Lyx。

尽管我设法将该不等式的解导出到.tex,但我无法通过 lyx 对其进行编译。

我验证了 .tex 文件在 Texworks 上可以完美运行,但当我使用 lyx 时却遇到了多个错误 :((我刚刚将普通的 latex 文件导入 lyx)

这是 .tex 文件:

\documentclass{article}
\usepackage{maplestd2e}
\def\emptyline{\vspace{12pt}}
\begin{document}
\pagestyle{empty}
\DefineParaStyle{Maple Heading 1}
\DefineParaStyle{Maple Text Output}
\DefineParaStyle{Maple Dash Item}
\DefineParaStyle{Maple Bullet Item}
\DefineParaStyle{Maple Normal}
\DefineParaStyle{Maple Heading 4}
\DefineParaStyle{Maple Heading 3}
\DefineParaStyle{Maple Heading 2}
\DefineParaStyle{Maple Warning}
\DefineParaStyle{Maple Title}
\DefineParaStyle{Maple Error}
\DefineCharStyle{Maple Hyperlink}
\DefineCharStyle{Maple 2D Math}
\DefineCharStyle{Maple Maple Input}
\DefineCharStyle{Maple 2D Output}
\DefineCharStyle{Maple 2D Input}
\mapleinline{inert}{2d}{solve(b^4-(2-d)*b^2-2*d*b+d+1 > 0, [b], parametric)}{\[\displaystyle {\it solve} \left( 0<{b}^{4}- \left( 2-d \right) {b}^{2}-2\,db+d+1,[b],{\it parametric}\\
\mbox{} \right) \]}
\begin{maplegroup}
\mapleresult
\begin{maplelatex}
\mapleinline{inert}{2d}{piecewise(d < -4, [[b < -1-sqrt(-d)], [-1+sqrt(-d) < b]], d = -4, [[1 < b], [b < -3]], d <= 0, [[1 < b], [b < -1-sqrt(-d)], [-1+sqrt(-d) < b, b < 1]], 0 < d, [[1 < b], [b < 1]])}{\[\displaystyle \cases{[[b<-1- \sqrt{-d}],[-1+ \sqrt{-d}<b]]&$d<-4$\cr [[1<b],[b<-3]]&$d=-4$\cr [[1<b],[b<-1- \sqrt{-d}],[-1+ \sqrt{-d}<b,b<1]]&$d\leq 0$\cr [[1<b],[b<1]]&$0<d$\cr}\]}
\end{maplelatex}
\end{maplegroup}
\begin{Maple Normal}{
\begin{Maple Normal}{
\mapleinline{inert}{2d}{}{\[\displaystyle \]}
}\end{Maple Normal}
}\end{Maple Normal}
\end{document}

以下是发生错误的 lyx 输出

有什么建议么?

提前致谢

答案1

对于遇到同样问题的人,我设法间接地解决了它。

在 LyX 上,转到:工具->首选项->路径->并在路径前缀中添加安装 maple、mathematica 或任何其他软件的文件夹的目标。

之后,只需插入数学类型模式并编写代码。将光标放在代码末尾,然后转到:

编辑->数学->使用计算机代数系统->并选择您想要的软件。

基本上就是用 Lyx 的 IDE 替换你的 CAS 的 IDE

PS:这是完整教程https://mathematica.stackexchange.com/questions/42795/using-mathematica-in-conjunction-with-lyx-path-issues

相关内容