我正在创建一个用于会议记录的类,我希望在会议记录打印出来后添加“Notes”一词,并可能添加一些行,以便人们在上面书写。如何让类在每个边距上排版相同的内容?为了清楚起见,我说的“边距”是指marginpar
排版的框。
我目前正在使用 XeLaTeX 的回忆录类(但如果另一个类提供此功能,我愿意接受建议)。
我所追求的大致图片:
\documentclass{memoir}
%% Packages I'm using, not needed for this example, but included just in case they'd clash.
\usepackage{paralist}
\usepackage[english]{datetime}
\usepackage{fontspec}
\usepackage{libertine}
%% in the real thing there is some redefinition of the title, not included here for simplicity
%% Here something would go to make the notes section.
\title{Title}
\begin{document}
\maketitle
Main text
\end{document}
答案1
我猜您正在寻找的是著名的eso-pic
软件包,但是,正如 daleif 所说,没有 MWE 我们就无法更具体。
\documentclass{scrartcl}
\usepackage{blindtext,eso-pic}
\AddToShipoutPictureBG{%
\AtTextUpperLeft{%
\hspace{\textwidth}%
\hspace{\marginparsep}%
Notes
}}
\begin{document}
\Blinddocument
\end{document}