如何修改模板的某些部分

如何修改模板的某些部分

我正在写一篇供公司内部使用的研究论文;我喜欢的模板在每页的角落都有我不熟悉的符号,我宁愿没有这些符号。我该如何修改模板以不再包含这些符号?

在此处输入图片描述

PNAS 期刊模板

答案1

pnastwo文件会制作裁切标记来指示页面将在何处被裁切以产生最终的页面大小。

裁切标记由类文件中的三行产生:

  1. 第 100 行是\RequirePackage[cam,center]{crop},加载crop
  2. 第 103 行是\renewcommand*\CROP@horigin{-.5truein},重新定义设置裁剪标记的水平原点
  3. 第 104 行是\renewcommand*\CROP@vorigin{-.5truein},重新定义垂直原点。

要消除裁剪标记,请注释掉以下三行。步骤如下:

  1. 创建 的副本pnastwo.cls。我们将其命名为jackstemplate.cls
  2. 转到第 100、103 和 104 行。%在每行开头放置一个,这样它们就不会被执行。
  3. 虽然这并非 OP 请求的一部分,但页脚包含对 PNAS 的引用。通过将第 344 行替换为以下内容来删除它\theurl\hfill\footlinefont PNAS\hskip6pt \vrule depth 2pt\hskip6pt\theurl\hfill\footlinefont \hskip6pt \vrule depth 2pt\hskip6pt
  4. 保存新的类文件。

PNAStwoOP 在 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}

在此处输入图片描述

相关内容