如何做这个定理环境(这种精确的风格)?

如何做这个定理环境(这种精确的风格)?

我正在乳胶上编写课程支持,我查看了自己的旧笔记,发现了这个定理模板,并想在自己的课程支持中实现它。

在此处输入图片描述

答案1

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{mathpazo}
\usepackage{amsthm}
\usepackage[most]{tcolorbox}

\newtheorem{theorem}{Th\'{e}or\`{e}me}

\begin{document}
\begin{tcolorbox}[
    enhanced,
    title={Convergence domin\'{e}e -- version faible},
    fonttitle=\bfseries,
    coltitle=black,
    colback=white,
    attach boxed title to top left={xshift=0.9cm,yshift=-2mm,yshifttext=-1mm},
    boxed title style={colframe=black,colback=white}
]
\begin{theorem}
Si $(f_j)_j$ est une suite de fonctions int\'{e}grables sur un intervalle $[a,b]$ qui converge
uniform\'{e}ment sur $[a,b]$ vers une fonction $f$ alors $f$ est int\'{e}grable sur cet intervalle
et
\[
    \lim_j \int_a^b |f_j(x) - f(x)| \,\mathrm d x = 0
\]
ce qui implique en particulier
\[
    \lim_j \int_a^b f_j(x) \,\mathrm d x = \int_a^b f(x) \,\mathrm d x.
\]
\end{theorem}
\end{tcolorbox}
\end{document}

在此处输入图片描述

相关内容