是否有一種解決方案可以在不使用任何新包的情況下圍繞環境製作框架? (有盒子什麼的)
答案1
例如僅使用 LaTeX 內核
\documentclass{article}
\newsavebox\mybox
\newenvironment{framedbox}
{\begin{lrbox}{\mybox}}
{%
\end{lrbox}%
\fbox{\usebox{\mybox}}%
}
\begin{document}
\begin{framedbox}
Hello world
\end{framedbox}
\end{document}
雖然我不清楚要裝箱的內容實際上是什麼。