Possible Duplicate:
How to type special/accented letters in LaTeX?
Can sameone provide some suggestion how to introduce special signs to cls file? I had tried to avoid this problem by trying to define new variable : \def\@abc and typing my test with \abc{text} but it didn't work.
@,#,$etc. in text? If so, most of them can be used by escaping them with . – Alan Munn Jul 02 '12 at 16:24inputencpackage with the[utf8]option, and a font encoding that supports the characters. Or compile using XeLaTeX or LuaLaTeX with noinputenc. In both cases you just enter the characters directly into your source. – Alan Munn Jul 02 '12 at 16:28\RequirePackage[utf8]{inputenc}(unless XeLaTeX or LuaLaTeX is used) in your class file. This would make the class file dependent on a particular encoding, though. If you don't want to do that, then you can use macros for the diacritics. (See the Comprehensive LaTeX Symbols List for those.) (texdoc symbolsshould probably find it.) – Alan Munn Jul 02 '12 at 16:55