将 Elsevier 论文的字体类型更改为 Arial(或 Helvetica)

将 Elsevier 论文的字体类型更改为 Arial(或 Helvetica)

我正在准备一篇论文,准备将我的第一篇论文寄给 Elsevier 期刊之一。我使用 Texmaker 用 Elsevier 文章类 (elsarticle.cls) 格式化我的手稿。从“作者指南”中,关于字体类型的说明是使用以下类型之一:

Arial (Helvetica)

导游

象征

時間

Elsevier 的大部分论文都使用 Arial 字体,现在我使用以下源代码将字体更改为 Arial:

\documentclass[5p,times,twocolumn,8pt]{elsarticle}

\usepackage{fontspec}
\setsansfont{Arial}

\usepackage{graphicx}
\usepackage{graphics}

\usepackage{amsmath}
\usepackage{epstopdf}

%end

% declarations for front matter
\usepackage{lipsum}
\begin{document}
Functional magnetic resonance imaging (fMRI) has become the standard technique in functional brain imaging. It is a noninvasive, radiation-free technique that has good temporal and spatial reso- lution. The fMRI technique is based on detection of the decrease in deoxyhemoglobin concentration at the site of neuronal activ- ity, which causes a local increase in the magnetic resonance signal. This effect has been termed the blood oxygenation level depend- ent (BOLD) contrast mechanism [1,2]. In essence, blood serves as its own contrast agent in fMRI and allows identification of active brain sites. BOLD fMRI generally capitalizes on the differ- ence between two states: an active on-state in which stimulus related neural activity is generated and a passive off-state in which stimulus-related neural activity is absent or kept to a minimum. By comparing the active on-state to the passive off-state, the resultant difference defines the site, volume, and level of fMRI activation. FMRI data go through two main processing stages. First, BOLD

% Table 
\end{document}

但它与 Elsevier 发布的版本中的字体不匹配: 在此处输入图片描述

知道有一条指令说:确保你只使用推荐的字体(Type1 或 TrueType)(之前引用过),我不知道什么Type1 或 TrueType方法。

答案1

fontspec据我所知,很少有(如果有的话!)爱思唯尔期刊会接受需要 XeLaTeX 或 LuaLaTeX 才能成功编译的稿件。因此,除非您获得编辑的明确许可,否则不要走这条路。

我的第一条建议是:对于您即将提交给 Elsevier 期刊的手稿,只需使用默认字体(Computer modern)。大多数 Elsevier 期刊都使用专有字体(名为 Gulliver)作为最终排版产品。您花在选择 Computer Modern 以外的字体上的任何时间都可能被浪费。

如果出于某种原因,您不想在即将提交给 Elsevier 期刊的稿件中使用 Computer Modern,我的下一个建议是:在使用文档类时,不要过度指定字体elsarticle。当然,我不会使用该times选项,因为这样做会加载已弃用的txfonts字体包。相反,通过说明在序言中加载较新的包newtxtext。并且,如果您希望使用 Helvetica 克隆来装饰您的文档,请发出指令以加载缩放的字体,以便其 x 高度与 Times Roman 相匹配。newtxmath\usepackage\usepackage[scaled=0.86]{helvet}

如果您坚持,您可以加载包courier以将默认的等宽字体 ( Computer Modern TT) 替换为Courier。话虽如此,我认为公平地说,Courier 与 Times Roman 或 Helvetica 混搭效果并不好。不要使用它;改用默认的 Computer Modern TT 等宽字体。

最后,elsarticle文档类无法识别该选项8pt;它将被忽略。

完整的 MWE:

\documentclass[5p]{elsarticle}
\usepackage{amsmath,newtxtext,newtxmath}
\usepackage[scaled=0.86]{helvet}
%\usepackage{courier} % not really recommended
\begin{document}
Nam dui ligula, fringilla a, euismod sodales, 
sollicitudin vel, wisi. Morbi auctor lorem non 
justo. 

$E=mc^2$

Hello\textsf{Hello}\texttt{Hello}
\end{document}

答案2

使用:

\usepackage{amsmath}
\usepackage{fontspec}
\setsansfont{Arial}
\renewcommand\familydefault{\sfdefault}

\usepackage{graphicx}
\usepackage{epstopdf}

唯一重要的命令是\renewcommand\familydefault{\sfdefault}。你必须在所有 TeX 引擎上使用它

相关内容