是否有一个方便的 LaTeX 包可以包含在序言中,并允许使用以下命令编写或多或少扩展的游览/离题内容:
\begin{excursion}
extended explanations and digressions to a topic mentioned in the main text
\end{excursion}
或类似的东西?
答案1
目前尚不清楚预期的输出应该是什么样的,但您可以画一个框来表示简短的“离题”。
[已编辑:我正在根据@Manuel 的建议更新我的答案]
\documentclass[12pt]{article}
\usepackage{tcolorbox}
\usepackage{lipsum}
\begin{document}
\section{A Great Title}
\lipsum[1]
\begin{tcolorbox}
\lipsum[1]
\end{tcolorbox}
\lipsum[1]
\end{document}