documentclass{book} + mdframed + leftmargin

documentclass{book} + mdframed + leftmargin

我的问题是当我使用 documentclass{book} leftmargin 和 rightmargin 时没有反应,但它与 documentclass{article} 一起使用时可以正常工作。我该如何解决这个问题?我必须使用 documentclass{book}。

enter code here\begin{mdframed}[backgroundcolor=lightgray, leftmargin=1cm,rightmargin=1cm,roundcorner=8pt] 

答案1

书是双面的,那么左边和右边是什么?尤其是当它们具有不同的价值时。

请参阅手册中的第 6.7 节mdframed。这有效

\documentclass[a4paper]{book}
\usepackage{mdframed,lipsum}
\begin{document}

\lipsum[1]

\begin{mdframed}[innermargin=3cm,outermargin=1cm]
  \lipsum[2]
\end{mdframed}

\end{document}

相关内容