3

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.

thymaro
  • 1,507
  • Welcome to TeX.sx! Please add a minimal working example (MWE) that illustrates your problem. It will be much easier for us to reproduce your situation and find out what the issue is when we see compilable code, starting with \documentclass{...} and ending with \end{document}. – jub0bs Mar 27 '13 at 13:49
  • 1
    @Jubobs For once, a MWE is not quite so important (you only need to add \begin{document} to the above so TeX writes to the log to see the message). – Joseph Wright Mar 27 '13 at 13:56
  • The apl style is not specified in a way recognised by revtex latex says LaTeX Warning: Unused global option(s): [apl,aps4]. – David Carlisle Mar 27 '13 at 13:57
  • @JosephWrigt Yes, you're right. I initially thought that the warning was issued by the class because it expected the OP to redefine some macro in the preamble. I was wrong. – jub0bs Mar 27 '13 at 13:58

2 Answers2

5

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.

Joseph Wright
  • 259,911
  • 34
  • 706
  • 1,036
  • 1
    Regarding that second warning, the class defines a macro called \apl but there doesn't seem to be a class option called apl. – jub0bs Mar 27 '13 at 13:56
1

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}
m0nhawk
  • 9,664