答案1
类pnastwo
文件会制作裁切标记来指示页面将在何处被裁切以产生最终的页面大小。
裁切标记由类文件中的三行产生:
- 第 100 行是
\RequirePackage[cam,center]{crop}
,加载crop
包 - 第 103 行是
\renewcommand*\CROP@horigin{-.5truein}
,重新定义设置裁剪标记的水平原点 - 第 104 行是
\renewcommand*\CROP@vorigin{-.5truein}
,重新定义垂直原点。
要消除裁剪标记,请注释掉以下三行。步骤如下:
- 创建 的副本
pnastwo.cls
。我们将其命名为jackstemplate.cls
。 - 转到第 100、103 和 104 行。
%
在每行开头放置一个,这样它们就不会被执行。 - 虽然这并非 OP 请求的一部分,但页脚包含对 PNAS 的引用。通过将第 344 行替换为以下内容来删除它
\theurl\hfill\footlinefont PNAS\hskip6pt \vrule depth 2pt\hskip6pt
:\theurl\hfill\footlinefont \hskip6pt \vrule depth 2pt\hskip6pt
- 保存新的类文件。
PNAStwo
OP 在 Overleaf 上链接的文件包括一个启动文件。PNASTMPL.tex
要使用新的类文件,请将第 36 行从 更改为\documentclass{pnastwo}
。\documentclass{jackstemplate]
编辑该启动文件以制作一个简单的 MWE 可得到:
\documentclass{jackstemplate}
\usepackage[utf8]{inputenc}
\contributor{Contributor}
\url{myurl}
\copyrightyear{2018}
\issuedate{Issue Date}
\volume{Volume}
\issuenumber{Issue Number}
\title{Title of the publication}
\author{John Smith\affil{1}{Affiliation 1},
James Smith\affil{2}{Affiliation 2}
\and
Jane Smith\affil{1}{}}
\contributor{The Contributor}
\begin{document}
\maketitle
\end{document}