What do I need:
- The table of contents, list of figures and list of tables in roman, e.g. i,ii,iii,iv,..., but I get I, II, III, IV, etc. after compiling)
-The pagenumber in ALL the pages in the "right-foot position", but I get the first page of \chapters, and the first one of TOC, list of figures and list of tables, centered in the bottom.
- I need to change the \chapter{} style: I need 1. Chapter Name instead of
Chapter 1.
Chapter Name. I cannot use a \section{}, because I need this kind of leveling.
What do I use: Texshop, MacTex, and OSX 10.6.2
The code:
Code: Select all
\documentclass[letterpaper,12pt,oneside]{book}
\usepackage[spanish]{babel}
\usepackage[latin1]{inputenc}
\usepackage{tocbibind}
\title{Tesis Final}
\author{}
\pagestyle{headings}
\usepackage{fancyhdr}
\pagestyle{fancy}
\begin{document}
\maketitle
\frontmatter
\fancyhf{}
\lhead{}
\rfoot[rf-even]{\thepage}
\pagenumbering{roman}
\setcounter{page}{1}
\newpage
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\mainmatter
\pagenumbering{arabic}
\setcounter{page}{1}
…
\end{document}