I was wonder why I receive the following message.
Warning line 1 No Society specified, using generic APS style.
Here is my code:
\documentclass[apl, aps4, twocolumn, superscriptaddress]{revtex4}
As far as I know I have specified apl style.
I was wonder why I receive the following message.
Warning line 1 No Society specified, using generic APS style.
Here is my code:
\documentclass[apl, aps4, twocolumn, superscriptaddress]{revtex4}
As far as I know I have specified apl style.
If you look a little further through the log, you'll find it reads
Class revtex4 Warning: No Society specified, using generic APS style.
...
LaTeX Warning: Unused global option(s):
[apl,aps4].
Notice that neither apl nor aps4 are recognised. Changing the input to
\documentclass[apl, aps, twocolumn, superscriptaddress]{revtex4}
removes the 'No Society' warning and gives
LaTeX Warning: Unused global option(s):
[apl].
So the warning is telling you something: you're using option names that the class does not know, and that means it's falling back on a generic format.
\apl but there doesn't seem to be a class option called apl.
– jub0bs
Mar 27 '13 at 13:56
Compiling your document I get:
Class revtex4 Warning: No Society specified, using generic APS style.
LaTeX Warning: Unused global option(s): [apl,aps4].
You need to use revtex4-1:
\documentclass[aip,apl,twocolumn,superscriptaddress]{revtex4-1}
\begin{document}
Hi!
\end{document}
aps4 still seems to be unknown, and fails if you give it before aip.
– Joseph Wright
Mar 27 '13 at 14:02
\documentclass{...}and ending with\end{document}. – jub0bs Mar 27 '13 at 13:49\begin{document}to the above so TeX writes to the log to see the message). – Joseph Wright Mar 27 '13 at 13:56LaTeX Warning: Unused global option(s): [apl,aps4].– David Carlisle Mar 27 '13 at 13:57