Salve a tutti,
qualcuno sa dirmi come mai con questo codice:
– mi mette il primo numero arabo nella “List of Tables” e non sulla pagina del 1° capitolo ?
– come faccio poi a scrivere qualcosa in mezzo alla pagina ? (nella fattispecie, nella sezione che inizia con \begin center che sarebbe tipo la dedica
Grazie a tutti,
Tommaso
\documentclass[a4paper,11pt,openright,twoside]{report}
\usepackage{graphicx}
\usepackage{ctable}
\usepackage{amsmath}
\usepackage{natbib}
\usepackage{booktabs}
\usepackage{array}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{caption}
\usepackage{rotating}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{subfigure}
\usepackage{vmargin}
\usepackage{setspace}
\usepackage{inputenc}
\usepackage{float}
\usepackage{textcomp}
\usepackage{amssymb}
\usepackage{xcolor}
\usepackage{makeidx}\onehalfspacing
\begin{document}
\title{\bf Title}
\author{Tommy}
\date{\today}
\maketitle
\begin{center}
\textit{To those of you that truly cared about me…}
\end{center}
\chapter*{Abstract}
Here it will be the abstract\chapter*{Acknowledgements}
Thanks\tableofcontents
\pagenumbering{roman}
\listoffigures
\listoftables
\pagenumbering{arabic}
\include{Chapter1/Chapter1}
\bibliographystyle{natbib}
\bibliography{review_byb/bibliografia}
\end{document}
Non usare \pagenumbering. Piuttosto usa i comandi \frontmatter, \mainmatter e \backmatter, che sono spiegati nell’Arte.
Per usare i comandi \frontmatter, \mainmatter e \backmatter devi passare alla classe book, come troverai spiegato nell’Arte.
Lorenzo