答案1
这些盒子很容易做tcolorbox
对于定理和定义,有一个很好的库theorems
提供了很多有用的命令;请参阅文档中的第 18 章。
为了帮助您入门,这里有一个与您提供的图像非常接近的示例。
\documentclass{article}
\usepackage{newtxtext, newtxmath}
\usepackage{tcolorbox}
\tcbuselibrary{theorems}
\newtcbtheorem{definition}{Definition}{
sharp corners,
fonttitle=\bfseries,
coltitle=black,
colframe=red!20!white,
colback=red!10!white,
boxrule=0mm,
}{}
\begin{document}
\begin{definition}{Probability space}{}
A \textbf{probability space} is a triple \((\Omega, \mathcal{F}, P)\):
\begin{itemize}
\item \(\Omega =\) ``sample space'' = set of ``samples''
\item \(\mathcal{F} =\) family of subsets of \(\Omega\), called ``events''
\item \(P = \) probability measure
\end{itemize}
\end{definition}
\end{document}