Andrew Sullivan wrote:
The rfc style is a modification to the article syle. It produces output that looks like IETF RFCs.
You use it by calling it this way:
\documentstyle[12pt,rfc]{article}
When I try to use it, I get this in my log:
LaTeX Warning: Unused global option(s): [rfc].
\documentstyle[12pt,rfc]{article}
means that you load the documentclass "article" with the option "12pt" and "rfc". As the article class doesn't support the option "rfc", you get this error.
As the rfc style is defined as .sty-file, it is an extension to any document class and it can be loaded with the preamble line
\usepackage{rfc}(Documentclass files have the extension ".cls".)
regards Uwe
