我如何实现双列模板

我如何实现双列模板

我如何实现这样的模板(两列):

截屏

就我而言,附加面板可以包含图像。

答案1

看起来你需要一份twosided文件。在 MWE 中,我使用过

  • geometry设置页面尺寸的包
  • caption提供命令的包,captionof用于边距图
  • changepage包可以提供您想要的额外宽度环境。

我还加载了lipsum示例文本包和graphicx包含图像的包。

截屏

\documentclass[10pt,twoside]{report}
\usepackage[left=7cm,right=1cm,showframe=true,                  % page settings (showframe is useful!)
    top=1.5cm,bottom=1.5cm]{geometry}               
\usepackage[demo]{graphicx}
\usepackage{lipsum}
\usepackage{caption}
\usepackage{changepage}

\reversemarginpar

\begin{document}

\marginpar{
\centering 
\includegraphics[width=\marginparwidth]{myfig}
\captionof{figure}{My Figure}}
\lipsum

\lipsum

\marginpar{
\centering 
\includegraphics[width=\marginparwidth]{myfig}
\captionof{figure}{My Figure}}

\lipsum[1]

\begin{adjustwidth}{-7cm}{}
\lipsum[2]
\end{adjustwidth}

\end{document}

请注意,您需要showframe=truegeometry负载中移除,并[demo]graphicx负载中移除 - 这些只是为了演示。

相关内容