这可能是一个常见问题,但我还没有找到答案。我正在尝试使用 PhDThesisPSnPDF 课程,但用意大利语写作。我唯一的问题是更改意大利语 (Capitolo) 中的“章节”。我对书目、目录等没有问题...有人能帮我吗?
答案1
只需使用babel
即可解决问题。在示例中,我thebibliography
仅以模拟环境为例,请使用您自己的方法。我还添加了oneside
仅选项以减少页面数量。
当然,您必须更改标题页的文字。
\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}