我正在写一份包含练习和更正的文档。我希望更正能够很容易地被注意到,这样就不会有学生意外阅读它并弄乱它的练习。我为此编写了一个环境,问题是它不会分成多页 :/
\newenvironment{solution}%
{\par\rule{1ex}{1ex}
\hspace{\stretch{1}}
\textbf{Solution}
\hspace{\stretch{1}}
\rule{1ex}{1ex}\par%
\hspace{2ex}% indent everything by 2ex
%\begin{myindentpar}{7ex}
%\quote \quote
\begin{minipage}{0.95\linewidth}% stop just before the right squares
\begin{framed}}% put a black frame
%\addtolength{\leftskip}{4cm}
%\begin{adjustwidth}{6cm}{}
%\begin{longtable}{|p{1.1\linewidth}|}
%\hline}
{\end{framed}\end{minipage}
%{\\\hline\end{longtable}
%\end{adjustwidth}
%\end{myindentpar}
%\endquote \endquote
\par
\rule{1ex}{1ex}\hspace{\stretch{1}}
\hspace{\stretch{1}}\rule{1ex}{1ex}\par}
我特意留下了我的评论尝试,希望它能给你带来启发。
如果你找到一个稍微改变设计的解决方案,我仍然非常感兴趣:)
答案1
您的代码中存在一个问题,即您将 括mdframed
在 中minipage
,而minipage
s 不允许分页符。我猜您使用了 来minipage
定位框架角落上的小方块;然而,这并不是必需的,您可以使用singleextra
、来定位它们firstextra
,而不会破坏环境内部分页符的可能性。
我在一个小例子中定义了两种样式:第一种没有正方形,第二种使用正方形(我不确定您希望使用的确切长度,但您可以轻松进行必要的调整):
\documentclass{article}
\usepackage[a5paper]{geometry}% just for the example
\usepackage[framemethod=tikz]{mdframed}
\usepackage{tikzpagenodes}
\usepackage{lipsum}% just to generate text for the example
\usetikzlibrary{calc}
\mdfdefinestyle{mystyle}{%
leftmargin=2ex,
innertopmargin=2\baselineskip,
skipabove={\dimexpr0.5\baselineskip+\topskip\relax},
skipbelow={\dimexpr0.5\baselineskip+\topskip\relax},
firstextra={%
\path let \p1=(P), \p2=(O)
in node[font=\bfseries] at ([yshift=-2ex]0.5*\x1-\x2,\y1) {Solution};
}
}
\mdfdefinestyle{mysquare}{%
leftmargin=0pt,
rightmargin={\dimexpr4pt+2ex\relax},
innertopmargin=2\baselineskip,
skipabove={\dimexpr0.5\baselineskip+\topskip\relax},
skipbelow={\dimexpr0.5\baselineskip+\topskip\relax},
singleextra={%
\path let \p1=(P), \p2=(O)
in node[font=\bfseries] at ([yshift=-2ex]0.5*\x1-\x2,\y1) {Solution};
\fill[black] ([xshift=2pt,yshift=2pt]P) rectangle ++(1ex,1ex);
\fill[black] ([xshift=-2pt,yshift=-2pt]O) rectangle ++(-1ex,-1ex);
\fill[black] ([xshift=-2pt,yshift=2pt]O|-P) rectangle ++(-1ex,1ex);
\fill[black] ([xshift=2pt,yshift=-2pt]O-|P) rectangle ++(1ex,-1ex);
},
firstextra={%
\path let \p1=(P), \p2=(O)
in node[font=\bfseries] at ([yshift=-2ex]0.5*\x1-\x2,\y1) {Solution};
\fill[fill=black] ([xshift=2pt,yshift=2pt]P) rectangle ++(1ex,1ex);
\fill[black] ([xshift=-2pt,yshift=2pt]O|-P) rectangle ++(-1ex,1ex);
},
secondextra={%
\fill[fill=black] ([xshift=2pt,yshift=-2pt]O-|P) rectangle ++(1ex,-1ex);
\fill[black] ([xshift=-2pt,yshift=-2pt]O) rectangle ++(-1ex,-1ex);
}
}
\newmdenv[style=mystyle]{solution}
\newmdenv[style=mysquare]{ssolution}
\begin{document}
\lipsum[1]
\begin{solution}
\lipsum[2-3]
\end{solution}
\lipsum[2]
\begin{ssolution}
\lipsum[1-2]
\end{ssolution}
\lipsum[2]
\end{document}