迄今为止最接近的拍摄

迄今为止最接近的拍摄

对于出版物,我想将书目和许可证信息放在最后一页底部的全宽框架文本框中。虽然这可以在单列文档中使用 和 来实现\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«。

答案2

希望以下标签可以帮到您:

\documentclass[12pt,a4paper,twocolumn]{scrartcl}

\usepackage{lipsum}
\usepackage{stfloats,framed}

\title{MWE}
\author{Test Developer}

\begin{document}

\maketitle

\begin{figure*}[b!]
\begin{framed}
Copyright. DOI. ISBN.
\lipsum[2-2]
\end{framed}
\end{figure*}

\lipsum[2-4]

\end{document}

在此处输入图片描述

相关内容