I have
biblio.bib:
@article{XX,
title={{Title}},
author={Author},
journal={Journal Title},
volume=1,
number=11,
pages={1-2},
year=1666
}
And myfile.tex
\documentclass[oneside]{memoir}
\usepackage{natbib}
\begin{document}
...
\cite{XX}
...
\bibliography{biblio}
\bibliographystyle{acm}
\end{document}
I get the error:
ERROR: Class memoir Error: Font command \sc is not supported.
--- TeX said ---
See the memoir class documentation for explanation.
Type H <return> for immediate help.
...
l.4 {\sc
Author}.
--- HELP ---
From the .log file...
Use \textsc, or \scshape{...}, or the oldfontcommands option
What might I be doing wrong?
\documentclass[oldfontcommands]{memoir}? – Werner Aug 20 '13 at 19:40LaTeX Error: File '.cls' not found.– Thomas Aug 20 '13 at 19:42oldfontcommandspart)? – Alan Munn Aug 20 '13 at 19:48\documentclass[oldfontcommands]{memoir}to work. But I can't get\documentclass[oldfontcommands][oneside]{memoir}to work. – Thomas Aug 20 '13 at 19:54[ ]separated by commas. So\documentclass[oneside,oldfontcommands]{memoir}. – Alan Munn Aug 20 '13 at 20:00