在我的文本中,我有一些段落应该标记为“注意”、“警告”、“提示”、“故事”。这些段落应该用较暗的背景和左侧的图标呈现。
我无法找出合适的关键词来在谷歌上搜索这个问题。
有什么线索吗?
答案1
\documentclass[english]{article}
\usepackage{babel,xcolor,framed,marginnote,blindtext}
\colorlet{shadecolor}{blue!10}
\newenvironment{SpecialPar}
{\begin{shaded}\marginnote{\fbox{Icon}}}
{\end{shaded}}
\begin{document}
\blindtext
\begin{SpecialPar}
\blindtext
\end{SpecialPar}
\blindtext
\end{document}