我想将我的 Mathematica 代码导出到 Latex,因此我将 Mathematica 笔记本保存为 LaTeX 文档。将此 Latex 代码复制到 Overleaf 时,我收到注意消息“\hbox 太宽”,并且文本超出了页面边框。我该如何修复此问题?
我的代码如下:
\documentclass{article}
\usepackage{amsmath, amssymb, graphics, setspace}
\newcommand{\mathsym}[1]{{}}
\newcommand{\unicode}[1]{{}}
\newcounter{mathematicapage}
\begin{document}
\begin{doublespace}
\noindent\(\pmb{w[2]\text{:=}3*(\text{Pi}{}^{\wedge}2)/2;}\)
\end{doublespace}
\begin{doublespace}
\noindent\(\pmb{w[3]\text{:=}4*(\text{Pi}{}^{\wedge}2);}\)
\end{doublespace}
\begin{doublespace}
\noindent\(\pmb{\text{k222}[\text{x$\_$},\text{t$\_$}]\text{:=}-
\text{Sqrt}[2/3]*\text{Pi}{}^{\wedge}2*(\text{Sin}
[\text{Pi}*x]+4*\text{Sin}[2*x*\text{Pi}]*\text{Exp}
[I*w[2]*t]+9*\text{Sin}[3*x*\text{Pi}]*\text{Exp}[I*w[3]*t])}\)
\end{doublespace}
\end{document}