C次の MWE について考えてみましょう。 の呼び出しがなければ\surroundwithmdframed
、vskip
の引数はquoting
機能します。 呼び出しがある場合は機能しません。回避策や修正方法を提案してもらえますか? よろしくお願いします。
\documentclass[12pt]{article}
\usepackage{mdframed}
\usepackage[usenames,dvipsnames, rgb, svgnames, x11names, sections]{xcolor}
\usepackage[vskip=10in]{quoting}
\surroundwithmdframed[linewidth=2pt, backgroundcolor=LightGray]{quoting}
\begin{document}
Some content
\begin{quoting}
xx
\end{quoting}
\end{document}
答え1
簡単な回避策としては、スキップをオプションの一部として提供することです。mdframed
環境。ドキュメンテーション次の長さについて言及しています:
そのため、 と も提供しますskipabove=10in
。skipbelow=10in
ただし、 のパワーを使用しmdframed
て独自のmdquoting
環境を作成します。
\documentclass{article}
\usepackage{mdframed}
\usepackage[usenames,dvipsnames, rgb, svgnames, x11names, sections]{xcolor}
\usepackage[vskip=2\baselineskip]{quoting}
\newmdenv[
linewidth=2pt,
backgroundcolor=LightGray,
skipabove=2\baselineskip,
skipbelow=2\baselineskip,
innerleftmargin=2.5em,
innerrightmargin=2.5em]{mdquoting}
\begin{document}
Some content
\begin{quoting}
xx
\end{quoting}
Some content
\begin{mdquoting}
xx
\end{mdquoting}
Some content
\end{document}