我创建了一个新环境:
\usepackage[dvipsnames]{xcolor}
\usepackage{mdframed}
\newenvironment{test}
{\begin{mdframed}[backgroundcolor=gray, linewidth=1pt]}
{\end{mdframed}}
我想以斜体显示环境内的文本。
我怎样才能做到这一点?
答案1
感谢 ChrisS,他在评论中回答了这个问题:
“添加\itshape
到开始环境规范的末尾;在选项的右括号后面mdframed
。”
\newenvironment{test}
{\begin{mdframed}[backgroundcolor=gray, linewidth=1pt]\itshape}
{\end{mdframed}}