减少阴影环境中的上边缘和下边缘

减少阴影环境中的上边缘和下边缘

我正在使用\begin{shaded}\usepackage{framed}突出显示我正在写的一些笔记中的一些公式和定理。

我想减少上下边距:我该怎么做?

答案1

提供最小示例(或参见这里),但这里有两种截然不同的可能性。

出于希望从示例本身中显而易见的原因,tcolorbox它增加了更多的灵活性,但相应地是一个更大、更复杂的包。

\documentclass{article}
\usepackage{framed, lipsum}
\usepackage{tcolorbox}
\begin{document}

\lipsum[1]
\begin{framed}
  \lipsum[2]
\end{framed}
\lipsum[3]

\clearpage
\setlength{\FrameSep}{0pt}

\lipsum[1]
\begin{framed}
  \lipsum[2]
\end{framed}
\lipsum[3]

\clearpage
\lipsum[1]
\begin{tcolorbox}
  \lipsum[2]
\end{tcolorbox}
\lipsum[3]

\clearpage
\lipsum[1]
% Too many options to list; but see especially
% sections 4.7.4, 4.10, 4.15, 4.16
% For example, an unwise setting:
\begin{tcolorbox}[top=0mm, bottom=15mm, left=18mm, right=3mm]
  \lipsum[2]
\end{tcolorbox}
\lipsum[3]

% These settings could be given to a new tcolorbox for repeated use: 
% \newtcolorbox{examplebox}{top=0mm, bottom=15mm, left=18mm, right=3mm}
% \begin{examplebox}
%  \lipsum[2]
% \end{examplebox} 
\end{document}

相关内容