我正在使用Legrand 橙色书籍模板并且喜欢练习环境的排版。我想使用相同的环境将我的文本放在 Ocre 颜色框内。从模板:
将文本“练习 2.1”替换为“我的文本”,并将其余文本替换为其他措辞。
我该怎么做?我可以用 Ocre 颜色在文本周围创建一个框吗?但是框右下角的小填充方块怎么办?
答案1
模板内部使用eBox
构建的环境mdframed
,因此您可以为您的框提供类似的定义:
代码:
\documentclass{book}
\input{structure}
\newenvironment{myboxedtext}[1]
{\begin{eBox}\textcolor{ocre}{{\bfseries\small\sffamily#1~}}}
{\hfill{\color{ocre}\tiny\ensuremath{\blacksquare}}\end{eBox}}
\begin{document}
\begin{myboxedtext}{My text}
Some test text goes here to illustrate the use of the box defined for text.
\end{myboxedtext}
\end{document}