Rieccomi! Ho risolto gran parte problemi in questo modo:
`\documentclass[a4paper,notitlepage,openany,11pt,colorlinks]{report}
…
\makeatletter
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
\vskip 20\p@
\interlinepenalty\@M
\Huge \bfseries #1\par\nobreak
\vskip 40\p@
}}
\makeatother
\usepackage[square,authoryear]{natbib}
\begin{document}
…
\begin{abstract}
Text.
\end{abstract}
\tableofcontents
\chapter{cap1}
…
\nocite{*}
\bibliographystyle{unsrt}
\addto\captionsenglish{\renewcommand{\bibname}{References}}
\bibliography{references.bib}
\addcontentsline{toc}{chapter}{\bibname}
\appendix
\chapter{appA}
Text.
\end{document}`
A questo punto mi servono solo:
– I numeri romani per tutto quello che c’è prima del cap1,
– l’Abstract nell’indice,
– il solito References invece che Bibliography con un link decente nell’indice,
– I capitoli a mo’ di sections…
Grazie! 🙂