Matlab 有 Matlab2Tikz,同时开放 Mathematica2Tikz,更多这里. 如何将诸如 Harary 图之类的图表从 Mathematica 导出到 LaTex?
在 Mathematica 中生成的示例图未找到导出到 LaTex 的支持。
答案1
可以使用 wolframscript 和 latexalpha2wlua.sty
看https://tex.stackexchange.com/a/579254/161015以获得完整的答案。
\documentclass[12pt,a4paper]{article}
\RequirePackage[cache]{latexalpha2wlua} % option cache (faster on the second run) or nocache (recalculate always)
\begin{document}
\begin{figure}
\wolframgraphics{Table[HararyGraph[i, 8, PlotLabel -> Subscript[H, i, 8]], {i, 2, 4}]}{HararyGraph} % default: pdf output
\includegraphics{HararyGraph.pdf}
\caption{Plot of HararyGraph from pdf}
\centering
\end{figure}
\end{document}