对于出版物,我想将书目和许可证信息放在最后一页底部的全宽框架文本框中。虽然这可以在单列文档中使用 和 来实现\vfill
,\fbox
但我不知道如何在双列文档中做到这一点。如何实现?
请注意我的内容是潘多克从 markdown 导出,并且 pandoc 使用图形环境排版图像。为了避免对 pandoc 代码或图形环境进行 monkeypatching(如果可能的话),我宁愿不使用该multicol
包,否则它会运行完美。
迄今为止最接近的拍摄
一列宽度框的 MWE:
\documentclass[12pt,a4paper,twocolumn]{scrartcl}
\usepackage{lipsum}
\usepackage{framed}
\usepackage{graphicx}
\title{MWE}
\author{Test Developer}
\begin{document}
\maketitle
\lipsum[2-4]
\begin{figure}
% placeholder for includegraphics
\begin{framed}
\vspace{1em}
\end{framed}
\caption{Test Figure}
\end{figure}
\vfill
\begin{framed}
\footnotesize
Copyright. DOI. ISBN.
\lipsum[2-2]
\end{framed}
\end{document}
看起来像这样:
目标输出
答案1
如果您可以使用 multicol 包,那就没问题:
\documentclass[12pt,a4paper,DIV=22]{scrartcl}
\usepackage{lipsum}
\usepackage{multicol}
\title{MWE}
\author{Test Developer}
\begin{document}
\maketitle
\begin{multicols}{2}
\lipsum[2-4]
\end{multicols}
\vfill
\fbox{%
\footnotesize
\begin{minipage}[t]{0.95\linewidth}
Copyright. DOI. ISBN.
\lipsum[2-2]
\end{minipage}
}
\end{document}
Cave:包名为»multicol«,环境名为»multicols«。