答案1
解释还有很多,但我只放两个比较简单的:
mdframed
具有较低的功率tcolorbox
,但在某些情况下更容易使用;我已经用软件包
newtxtext
和newtxmath
原始字体进行了模拟。我记得数学字体mtpro2
在 CTAN 上可以找到精简版;backgroundcolor=gray!20
您可以在(我已经使用过包)中更改颜色xcolor
。
\documentclass[a4paper,12pt]{article}
\usepackage{newtxtext,newtxmath}
\usepackage{xcolor}
\usepackage{mdframed}
\mdfsetup{%
linecolor=white,
backgroundcolor=gray!20,
}
\begin{document}
\section{Two Little Tricky Classical \ldots}
\vspace{.7cm}
\begin{mdframed}
Prove that
\begin{equation}
\mathrm{i}) \int_0^1\frac{\log^2(1+x)}{x}\,\mathrm{d}x=\frac14 \zeta(3);
\end{equation}
\begin{equation}
\mathrm{ii}) \int_0^1\frac{\log(1-x)\log(1+x)}{x}\,\mathrm{d}x=-\frac58 \zeta(3),
\end{equation}
where $\zeta$ denotes the Riemann zeta function.
\end{mdframed}
\end{document}