迷你页面背景

迷你页面背景

在“迷你页面”环境中,有没有办法让背景处于背景状态,然后在其上书写?而不是只有书写和半透明的背景。

答案1

\documentclass{article} 
\usepackage[svgnames]{xcolor} 
\usepackage{blindtext}
\begin{document} 

\blindtext

\noindent
\fcolorbox{Brown}{Aqua}{\begin{minipage}{\dimexpr\linewidth-2\fboxsep-2\fboxrule} 
\color{Brown}\blindtext 
\end{minipage}} 

or

\noindent
\colorbox{Khaki}{\begin{minipage}{\dimexpr\linewidth-2\fboxsep} 
\blindtext 
\end{minipage}} 

\end{document}

在此处输入图片描述

答案2

通过使用tikzframed包,您可以实现它。示例如下:

\usepackage{framed}

\begin{shaded}
....
\end{shaded}

tcolorbox还具有许多特点....

相关内容