如何混合使用 titlel 和 mdframed 包

如何混合使用 titlel 和 mdframed 包

通过此网站上的提示,我使用包装mdframed获得了一个漂亮的圆形盒子。但我想将它包含在包装中titling

以下最小示例mdframed在文档后面显示了如何正常工作。它还显示了titling如何工作,因为和\thedate\thetitle之后可用\maketitle,这是它的一个有用功能。我已经包含了flushright与一起工作的环境titling。但该mdframed环境会导致错误。

\documentclass{scrartcl}

\usepackage{lipsum}
\usepackage{titling}
\usepackage[framemethod=TikZ]{mdframed}

\title{My document's title}
\author{Jonathan Clark}
\date{10 May 2014}

% \pretitle{\begin{mdframed}[roundcorner=10pt]\LARGE\bfseries}  % doesn't work
\pretitle{\LARGE\bfseries}    % but without mdframed it works
\posttitle{}
\preauthor{\begin{flushright}\scshape}
\postauthor{\end{flushright}}
\predate{\large}
% \postdate{\end{mdframed}}   % doesn't work
\postdate{\end{mdframed}}     % but without mdframed it worsk

\begin{document}
\maketitle
\begin{mdframed}[roundcorner=10pt]
Date: \thedate. Title: \thetitle.
\end{mdframed}

\lipsum{1}

\end{document}

我相信我正在通过 OS X 上的 TeX Live 运行所有软件包的最新版本。

答案1

我猜想你想要的是下面这样的东西。我使用了包etoolbox,更具体地说,\pretocmd\apptocmdtowrap\maketitle放入mdframed环境中:

\documentclass[x11names]{scrartcl}

\usepackage{lipsum}
\usepackage{titling}
\usepackage{fourier}
\usepackage{heuristica}
\usepackage[framemethod=TikZ]{mdframed}
\usepackage{etoolbox}
\title{My document's title}
\author{Jonathan Clark}
\date{10 May 2014}

\pretitle{\LARGE\bfseries}
\posttitle{}
\preauthor{\begin{flushright}\scshape}
\postauthor{\end{flushright}}
\predate{\large}
\postdate{}
\pretocmd{\maketitle}{\mdfsetup{roundcorner = 10pt,linewidth = 2pt, linecolor = Red3}\begin{mdframed}}{}{}
\apptocmd{\maketitle}{\end{mdframed}\bigskip}{}{}

\begin{document}
\maketitle

\lipsum{1}

\end{document} 

在此处输入图片描述

相关内容