如何创建灰色背景?

如何创建灰色背景?

我正在尝试使用 mdframe 包为方程式制作一个灰色背景,如下图所示,但我无法正确下载它,所以还有其他想法或如何成功下载这个包吗?

提前致谢。

这

答案1

解释还有很多,但我只放两个比较简单的:

  1. mdframed具有较低的功率tcolorbox,但在某些情况下更容易使用;

  2. 我已经用软件包newtxtextnewtxmath原始字体进行了模拟。我记得数学字体mtpro2在 CTAN 上可以找到精简版;

  3. 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}

在此处输入图片描述

相关内容