How to change the conjunction between the authors of the hepthesis model in Overleaf?

1

Save personal. I wrote my dissertation using the template / class " hepthesis in Overleaf . The model is in English. Soon, in the initial writing I did not worry about the necessary flourishes. But now I have a few impasses to pass parts of the text to Portuguese.

Problem 1 : My references are all using the and conjunction between authors. Author1 and Author2 ....

I want to change to Portuguese. Therefore, it would be: Ziviani e Alves ...

Problem 2 : Some titles insist on staying in English, such as Declaration, Acknowledgments, Preface, Nomenclature, etc. I already used the \selectlanguage{brazilian} , but I was not very successful.

Namely, the hepthesis class has two files: thesis.cls and thesis.sty. In none of them is there any indication of how I can make the changes in references. And the basic packages I'm using are:

\documentclass[bind,a4paper]{thesis}
\usepackage[brazilian]{babel}
\usepackage[utf8]{inputenc}
    
asked by anonymous 08.01.2018 / 17:03

2 answers

0

I'm not really sure but see if this helps

1) In your example you are using \documentclass[bind,a4paper]{thesis} expected hepthesis

2) For bibtex you can see if \usepackage[...Lingua...]{babelbib} helps.

3) Normally to deal with titles and the like, internally babel defines a macro to rename the language (Example \def\chaptername{Cap\'{\i}tulo} ). An attempt would be to make something analogous for the missing elements.

    
03.02.2018 / 18:25
0

Marcos Alves,

I had the same problem as you and I used this command below to replace "and" with "and":

\iflanguage{brazil}{}{ 
        \renewcommand{\HAR@and@agsm}{\&}
        \renewcommand{\HAR@and@dcu}{e}
        \renewcommand{\HAR@and@apsr}{e}
    }
    
11.07.2018 / 00:47