答案1
tcolorbox
一种可能性是像这样使用:
\documentclass[11pt]{standalone}
\usepackage{tcolorbox}
\newcommand{\myexample}[2]{
\begin{tcolorbox}[colback=black!5!white,colframe=black,title={Example: #1}]
#2
\end{tcolorbox}
}
\begin{document}
\myexample{test}{This is just a test}
\end{document}
为了获得更像所提供的示例图像的东西(感谢 Christian Hupfer),您可以使用:
\documentclass[11pt]{standalone}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\newcommand{\myexample}[2]{
\begin{tcolorbox}[enhanced,colback=black!5!white,colframe=black,sharp corners,title={Example: #1}]
#2
\end{tcolorbox}
}
\begin{document}
\myexample{test}{This is just a test}
\end{document}
其结果是:
答案2
另一种可能性是使用表格来做这样的事情......
代码:
\documentclass{amsart}
\usepackage{lipsum}
\usepackage[table]{xcolor}
\usepackage{color}
\usepackage{array}
\begin{document}
\begin{table}[htp]
\begin{tabular}{|cp{5in}c|}
\hline
\cellcolor{black!100}&\multicolumn{1}{p{5in}}{\cellcolor{black!100}{\color{white}\Large{Some Title Here...}}}&\cellcolor{black!100}\\\hline
&\vskip .01in \lipsum[1]&
\end{tabular}
\end{table}
\end{document}
产量: