Text Formatting ⇒ References Heading
References Heading
the problem is the following. I have written a class file for my purposes and among other things, issued the \renewcommand{\refname}{....}. However, this cannot work from the class file (though, everything else works) and I have to invoke the command for every document I write.
Is there anything I should know / am doing wrong??
Thank you in advance
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
References Heading
perhaps you are using babel, in that case you could use \addto like
Code: Select all
\addto\captionsenglish{\renewcommand{\refname}{...}}Re: References Heading
thank you very much, it works like a charm!