Integral Large 无法与包一起使用

Integral Large 无法与包一起使用

我一直试图增加积分的大小,使其相对于积分内的其他函数来说相当大,但没有成功,我认为这是由于黑色背景造成的。有办法解决这个问题吗?

\documentclass{article}
\usepackage{color, graphicx, amsmath,  graphicx, fullpage, modern, mathtools, bigints}
\pagecolor{black}
\color{white}

\begin{document}

\color{red} \center 

\fontsize{40}{20} $$ \text{Intuitive Approach to}$$
$$\text{Trigonometric Integration}$$

\bf\scalebox{1}{$\displaystyle{\bigints} \frac{\sqrt{x^2 - 25}}{x}dx$}

\end{document}

目前,积分会稍微变大一些,但没有什么实质性的变化。我希望它与内部函数相关。我也尝试过这些包,mtpro2 和 relsize,但没有任何进展。任何帮助都将不胜感激!

答案1

您的代码中存在许多不准确之处。例如,它应该是\fontsize{20}{40}\fontsize{40}{20}而不是 ,\displaystyle并且是一个开关,即它不接受参数。我还想说,您严重滥用了$$ ... $$中心设置机制文字材料

无论如何,下面是我简化代码的方法。

在此处输入图片描述

\documentclass{article}
\usepackage{xcolor,amsmath}

\begin{document}
\pagecolor{black}
%\color{white}
\color{red} 
\centering
\parbox{4in}{\centering\fontsize{20}{35}\selectfont 
   Intuitive Approach to Trigonometric Integration
   \par\bigskip
   $\displaystyle\int \frac{\sqrt{x^2 - 25}}{x}\,dx$
   }
\end{document}

相关内容