Latex 中的边框重叠问题

Latex 中的边框重叠问题

我正在尝试创建一个数学工作表,其中每一页都需要边框,但是当我对某些方程式使用 \Huge 时(如果我不使用此代码,它们会非常小),方程式会在边框上重叠,这里是图片,下面是代码。

\newpage
\thisfancypage{%
  \setlength{\fboxsep}{4pt}\doublebox}{}
\newgeometry{left=1.5cm,bottom=1cm,top=1cm,right=1cm}
\begin{center}
\begin{multicols}{2}
\begin{enumerate}[label={\arabic*]}]
\setcounter{enumi}{69}
\Huge
\item 
   \begin{tabular}{c}
     $\frac{x}{2}+1=4$
   \end{tabular}
\item 
   \begin{tabular}{c}
     $\frac{x}{3}-2=2$
   \end{tabular}
\item 
   \begin{tabular}{c}
     $\frac{x}{5}+5=7$
   \end{tabular}
\end{enumerate}
\end{multicols}
\end{center}

在此处输入图片描述

请帮助我纠正或使用某种边框短代码。谢谢

相关内容