如何并排mdframed
排列,例如
mdframed1
mdframe2
\begin{mdframed}[roundcorner=10pt]
table 1
\end{mdframed}
\leavevmode
\hspace{2cm}
\begin{mdframed}[roundcorner=10pt]
table 2
\end{mdframed}
答案1
将每个mdframed
环境放置在minipage
特定宽度的里面:
\documentclass{article}
\usepackage{mdframed}% http://ctan.org/pkg/mdframed
\begin{document}
\noindent
\null\hfill%
\begin{minipage}{.4\linewidth}
\begin{mdframed}[roundcorner=10pt]
table 1
\end{mdframed}
\end{minipage}
\hspace{2cm}
\begin{minipage}{.4\linewidth}
\begin{mdframed}[roundcorner=10pt]
table 2
\end{mdframed}
\end{minipage}%
\hfill\null
\end{document}
根据您的喜好进行更改.4\linewidth
。使用\null\hfill
...\hfill\null
可以将mdframe
s 置于文本块的中心,而无需将其包装在组中。\centering
使用组也可以。