我很好奇为什么我会收到以下消息。
Warning line 1 No Society specified, using generic APS style.
这是我的代码:
\documentclass[apl, aps4, twocolumn, superscriptaddress]{revtex4}
据我所知我已经指定了 apl 风格。
答案1
如果你仔细看看日志,你会发现它写道
Class revtex4 Warning: No Society specified, using generic APS style.
...
LaTeX Warning: Unused global option(s):
[apl,aps4].
请注意,无论是apl
还是都aps4
无法识别。将输入更改为
\documentclass[apl, aps, twocolumn, superscriptaddress]{revtex4}
删除“无社会”警告,并给出
LaTeX Warning: Unused global option(s):
[apl].
因此,警告告诉您一些事情:您正在使用类不知道的选项名称,这意味着它将回到通用格式。
答案2
编译您的文档我得到:
Class revtex4 Warning: No Society specified, using generic APS style.
LaTeX Warning: Unused global option(s): [apl,aps4].
你需要使用revtex4-1
:
\documentclass[aip,apl,twocolumn,superscriptaddress]{revtex4-1}
\begin{document}
Hi!
\end{document}