2

May be this is a common qusetion but I haven't found this answer. I'm trying to use PhDThesisPSnPDF class but writing in Italian. My only issue is to change the "Chapter" in the italian lenguages (Capitolo). I have no problems with bib, list of contents etc... can some one help me?

1 Answers1

1

Just using babel fixes the issue. In the example I used a mock thebibliography environment just by way of example, use your own method. I also added the oneside option only in order to reduce the number of pages.

You have to change the text for the title page, of course.

\documentclass[
  a4paper,
  12pt,
  %times, % DON'T USE THIS OPTION
  numbered,
  print,
  index,
  oneside, % just for shortening the example
]{PhDThesisPSnPDF}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}

\begin{document}

\author{Io}
\title{Titolo}

\frontmatter

\begin{titlepage}
  \maketitle
\end{titlepage}

\tableofcontents

\listoffigures

\listoftables

\mainmatter

\chapter{Prova}

Testo

\begin{figure}[htp]
A
\caption{Una figura}
\end{figure}

\begin{table}[htp]
B
\caption{Una tabella}
\end{table}

\begin{thebibliography}{9}

\bibitem{x} Riferimento

\end{thebibliography}

\end{document}

enter image description here

egreg
  • 1,121,712