如何选择在“框架框”中绘制边框的哪一侧?

如何选择在“框架框”中绘制边框的哪一侧?

例如,如果您只想绘制框的顶部和底部边框,或者仅左侧和底部边框,是否有一个简单的包可以执行此操作,或者必须求助于使用表格或重量级绘图工具tikz

答案1

mdframed包中有您想要的东西。下面是一个 MWE,它在三个新环境中演示了您描述的边界。

许多其他可用选项-请参阅文档以获取更多详细信息和示例。

截屏

\documentclass{article}
\usepackage{mdframed}
\usepackage{lipsum}

% all 4 borders
\newmdenv{allfour}

% just top and bottom
\newmdenv[leftline=false,rightline=false]{topbot}

% just left and bottom
\newmdenv[topline=false,rightline=false]{leftbot}

\begin{document}

\subsection*{all four borders}
\begin{allfour}
\lipsum[1]
\end{allfour}

\subsection*{top and bottom}
\begin{topbot}
\lipsum[2]
\end{topbot}

\subsection*{left and bottom}
\begin{leftbot}
\lipsum[3]
\end{leftbot}
\end{document}

相关内容