I've written my own CV class and set it up so all packages are required in the .cls file and the .tex file only uses \documentclass. I would like to keep it this way but still be able to select language and use the \RequirePackage[language]{babel} call in the .cls file. Is there a way to do this something like
.tex file:
\documentclass[a4paper,12pt,final,language]{MyCV}
.cls file:
\RequirePackage[language]{babel}
or do I have to move that setting to the .tex file?
polyglossia) for language-specific features? My thought would be to keep it in the.texfile, but you can do as you please, of course. :-) – Paul Gessler Sep 28 '14 at 21:33\RequirePackage{babel}and specify the language(s) in the.texfile. However, in that case you must always specify a language when calling the class. – cfr Sep 28 '14 at 21:51