there is a template of Latex in my university. Problem is, I gotta change the title of the chapter of References (bybliography). So, the template is here (http://www.puc-rio.br/ensinopesq/ccpg/d ... 0.2%20.zip) and the documentation is here (http://www.puc-rio.br/ensinopesq/ccpg/d ... sisPUC.pdf).
Inside of the template, there is a tiny example which I can use to show the problem I'm having.
tiny.tex has the follow:
Code: Select all
\documentclass[
phd
]{ThesisPUC}
...
\begin{document}
...
\input{chapter-1}
...
\arial
\bibliography{tiny}
\end{document}
Code: Select all
...
\AtBeginDocument{%
\renewcommand{\bibname}{Referências Bibliográficas}%
\bibliographystyle{ThesisPUC}%
\renewcommand{\key}[1]{#1. }
\special{ pdf: docinfo << /Author (\puc@author) /Title (\puc@title) /Keywords (\puc@keywords) >> }%
}
The thing is, "other name" has to be all lowercase. BUT when I do that, the name never change!
I tried many commands, but nothing worked. So, checking the ThesisPUC.bst file, it has:
Code: Select all
...
FUNCTION {begin.bib}
{ preamble$ empty$
'skip$
{ preamble$ write$ newline$ }
if$
"\begin{thebibliography}{" longest.label * "} \addcontentsline{toc}{chapter}{\bibname} \arial\markboth{\bibname}{\bibname} " * write$ newline$
}
...
Can someone please help me!?