我正在report
文档类中写作,并试图重现以下结果(来自第 20 页)https://eprint.iacr.org/2016/505.pdf)。
我想生成一个带框的浮动内容,其中包含一个居中的粗体标题和一些任意正文以及一个位于框外的标题。我曾尝试将图形环境与包一起使用framed
,但结果并不完全符合我的要求。
\documentclass{report}
\usepackage{framed}
\begin{document}
\begin{figure}
\centering
\begin{framed}
\textbf{Title}
\begin{description}
\item[Foo] Body
\item[Bar] content
\end{description}
\end{framed}
\caption{A caption}
\end{figure}
\end{document}
底部边框与文本主体之间的空气过多。 此外,底部边框与标题之间的空气过多。
你们中有人能建议更接近我尝试重现的示例的方法吗?最好是作为自定义环境,我可以在自定义环境中将标题标签从“图”更改为其他内容。
先感谢您。
答案1
\documentclass{report}
\usepackage{float}
\floatstyle{boxed}
\newfloat{nonfigure}{tbp}{l0nfig}
\floatname{nonfigure}{Non Figure}
\begin{document}
\begin{nonfigure}
\centering
\textbf{Title}
\begin{description}
\item[Foo] Body
\item[Bar] content
\end{description}
\caption{A caption}
\end{nonfigure}
\end{document}