En primer lugar, muestro el esqueleto del informe que voy a usar como ejemplo. Primero añado la página de título, con {titlepage}, luego inserto el índice de contenidos, luego definio tres secciones (introducción, nudo y desenlace), y finalmente añado la lista bibliográfica. En este caso, «biblio.bib» es el fichero que contiene la bibliografía. Puedes consultar la siguiente entrada para leer más sobre cómo trabajar con la bibliografía (click aquí). Solo mencionar además, que con «setcounter» defino hasta qué nivel queremos que aparezca en el índice y se numere (3 = subsubsección); y que la numeración de las páginas comienza después del índice de tablas (sin contar la página de título), gracias a «pagenumbering».
usepackage[spanish]{babel}
usepackage[latin1]{inputenc}
setcounter{secnumdepth}{3}
setcounter{tocdepth}{3}
begin{document}
begin{titlepage}
vspace*{4cm}
centering
Huge
textbf{Cómo hacer un Reporte o Informe con LaTeX} \
vspace*{0.8cm}
rule{80mm}{0.1mm} \
vspace*{0.2cm}
Large
Ariel Marina \
vspace*{0.1cm}
large
today
normalsize
end{titlepage}
tableofcontents
pagenumbering{arabic}
section{Introducción}label{se:intro}
section{Nudo}label{se:nudo}
section{Desenlace}label{se:des}
bibliographystyle{acm}
bibliography{biblio}
end{document}
usepackage[spanish]{babel}
usepackage[latin1]{inputenc}
usepackage{fancyhdr}
usepackage{lastpage}
setcounter{secnumdepth}{3}
setcounter{tocdepth}{3}
% aqui definimos el encabezado
lhead[thepage/pageref{LastPage}]{}
chead[Informe]{Informe}
rhead[]{thepage/pageref{LastPage}}
renewcommand{headrulewidth}{0.5pt}
% aqui definimos el pie de pagina
lfoot[Océano]{Ariel Marina}
cfoot[today]{today}
rfoot[Ariel Marina]{Océano}
renewcommand{footrulewidth}{0.5pt}
pagestyle{fancy}
begin{document}
begin{titlepage}
vspace*{4cm}
centering
Huge
textbf{Cómo hacer un Reporte o Informe con LaTeX} \
vspace*{0.8cm}
rule{80mm}{0.1mm} \
vspace*{0.2cm}
Large
Ariel Marina \
vspace*{0.1cm}
large
today
normalsize
end{titlepage}
tableofcontents
pagenumbering{arabic}
lhead[thepage/pageref{LastPage}]{thesection. Tabla de contenidos}
rhead[thesection. Tabla de contenidos]{thepage/pageref{LastPage}}
section{Introducción}label{se:intro}
lhead[thepage/pageref{LastPage}]{thesection. Introduccion}
rhead[thesection. Introduccion]{thepage/pageref{LastPage}}
section{Nudo}label{se:nudo}
lhead[thepage/pageref{LastPage}]{thesection. Nudo}
rhead[thesection. Nudo]{thepage/pageref{LastPage}}
section{Desenlace}label{se:des}
lhead[thepage/pageref{LastPage}]{thesection. Desenlace}
rhead[thesection. Desenlace]{thepage/pageref{LastPage}}
bibliographystyle{acm}
bibliography{biblio}
lhead[thepage/pageref{LastPage}]{thesection. Bibliografía}
rhead[thesection. Bibliografía]{thepage/pageref{LastPage}}
end{document}
Ahora, una cosa más complicada. El formato del índice y de la bibliografía (tamaño de letra, sangría, etc.) sigue el formato utilizado para los capítulos. (Más exactamente, como chapter*, ya que no los numera.) Pero ahora, ya que no tenemos capítulos, sería mejor editar este formato para hacerlo igual que una sección. Para poder hacerlo, hay que añadir las siguientes líneas:
makeatletter
renewcommandtableofcontents{
section{{contentsname}
@mkboth{
MakeUppercasecontentsname}{MakeUppercasecontentsname}}
@starttoc{toc}
}
makeatother
makeatletter
renewcommandtableofcontents{
section{{Tabla de contenidos}
@mkboth{
MakeUppercasecontentsname}{MakeUppercasecontentsname}}
@starttoc{toc}
}
makeatother
renewenvironment{thebibliography}[1]{
section{bibname}
@mkboth{MakeUppercasebibname}{MakeUppercasebibname}
list{@biblabel{@arabicc@enumiv}}
{settowidthlabelwidth{@biblabel{#1}}
leftmarginlabelwidth
advanceleftmarginlabelsep
@openbib@code
usecounter{enumiv}
letp@enumiv@empty
renewcommandtheenumiv{@arabicc@enumiv}}
sloppy
clubpenalty4000
@clubpenalty clubpenalty
widowpenalty4000
sfcode`.@m}
{def@noitemerr
{@latex@warning{Empty `thebibliography' environment}}
endlist}
makeatother
thispagestyle{empty}
newpage
setlength{evensidemargin}{10mm}
usepackage[spanish]{babel}
usepackage[latin1]{inputenc}
usepackage{fancyhdr}
% nivel que se numera y aparece en el indice
setcounter{secnumdepth}{3}
setcounter{tocdepth}{3}
% quitar el 0.
renewcommandthesection{arabic{section}}
% tabla de contenidos como seccion
makeatletter
renewcommandtableofcontents{
section{{Tabla de contenidos} %linea importante
@mkboth{
MakeUppercasecontentsname}{MakeUppercasecontentsname}}
@starttoc{toc}
}
makeatother
% bibliografia como seccion
makeatletter
renewenvironment{thebibliography}[1]{
@mkboth{MakeUppercasebibname}{MakeUppercasebibname}
list{@biblabel{@arabicc@enumiv}}
{settowidthlabelwidth{@biblabel{#1}}
leftmarginlabelwidth
advanceleftmarginlabelsep
@openbib@code
usecounter{enumiv}
letp@enumiv@empty
renewcommandtheenumiv{@arabicc@enumiv}}
sloppy
clubpenalty4000
@clubpenalty clubpenalty
widowpenalty4000
sfcode`.@m}
{def@noitemerr
{@latex@warning{Empty `thebibliography' environment}}
endlist}
makeatother
% aqui definimos el encabezado
lhead[thepage/pageref{LastPage}]{}
chead[Informe]{Informe}
rhead[]{thepage/pageref{LastPage}}
renewcommand{headrulewidth}{0.5pt}
% aqui definimos el pie de pagina
lfoot[Océano]{Ariel Marina}
cfoot[today]{today}
rfoot[Ariel Marina]{Océano}
renewcommand{footrulewidth}{0.5pt}
pagestyle{fancy}
% margenes
setlength{oddsidemargin}{10mm}
setlength{evensidemargin}{10mm}
begin{document}
begin{titlepage}
vspace*{4cm}
centering
Huge
textbf{Cómo hacer un Reporte o Informe con LaTeX} \
vspace*{0.8cm}
rule{80mm}{0.1mm} \
vspace*{0.2cm}
Large
Ariel Marina \
vspace*{0.1cm}
large
today
normalsize
end{titlepage}
tableofcontents
pagenumbering{arabic}
lhead[thepage/pageref{LastPage}]{thesection. Tabla de contenidos}
rhead[thesection. Tabla de contenidos]{thepage/pageref{LastPage}}
section{Introducción}label{se:intro}
lhead[thepage/pageref{LastPage}]{thesection. Introduccion}
rhead[thesection. Introduccion]{thepage/pageref{LastPage}}
section{Nudo}label{se:nudo}
lhead[thepage/pageref{LastPage}]{thesection. Nudo}
rhead[thesection. Nudo]{thepage/pageref{LastPage}}
section{Desenlace}label{se:des}
lhead[thepage/pageref{LastPage}]{thesection. Desenlace}
rhead[thesection. Desenlace]{thepage/pageref{LastPage}}
bibliographystyle{acm}
bibliography{biblio}
lhead[thepage/pageref{LastPage}]{thesection. Bibliografía}
rhead[thesection. Bibliografía]{thepage/pageref{LastPage}}
end{document}
usepackage[spanish]{babel}
usepackage[latin1]{inputenc}
usepackage{fancyhdr}
usepackage{lastpage}
setcounter{secnumdepth}{3}
setcounter{tocdepth}{3}
% quitar el 0.
renewcommandthesection{arabic{section}}
% tabla de contenidos como seccion
makeatletter
renewcommandtableofcontents{
section*{{Tabla de contenidos} %linea importante
@mkboth{
MakeUppercasecontentsname}{MakeUppercasecontentsname}}
@starttoc{toc}
}
makeatother
% bibliografia como seccion
makeatletter
renewenvironment{thebibliography}[1]{
@mkboth{MakeUppercasebibname}{MakeUppercasebibname}
list{@biblabel{@arabicc@enumiv}}
{settowidthlabelwidth{@biblabel{#1}}
leftmarginlabelwidth
advanceleftmarginlabelsep
@openbib@code
usecounter{enumiv}
letp@enumiv@empty
renewcommandtheenumiv{@arabicc@enumiv}}
sloppy
clubpenalty4000
@clubpenalty clubpenalty
widowpenalty4000
sfcode`.@m}
{def@noitemerr
{@latex@warning{Empty `thebibliography' environment}}
endlist}
makeatother
% aqui definimos el encabezado
lhead[thepage/pageref{LastPage}]{}
chead[Informe]{Informe}
rhead[]{thepage/pageref{LastPage}}
renewcommand{headrulewidth}{0.5pt}
% aqui definimos el pie de pagina
lfoot[Océano]{Ariel Marina}
cfoot[today]{today}
rfoot[Ariel Marina]{Océano}
renewcommand{footrulewidth}{0.5pt}
pagestyle{fancy}
% margenes
setlength{oddsidemargin}{10mm}
setlength{evensidemargin}{10mm}
begin{document}
begin{titlepage}
vspace*{4cm}
centering
Huge
textbf{Cómo hacer un Reporte o Informe con LaTeX} \
vspace*{0.8cm}
rule{80mm}{0.1mm} \
vspace*{0.2cm}
Large
Ariel Marina \
vspace*{0.1cm}
large
today
normalsize
end{titlepage}
tableofcontents
pagenumbering{arabic}
lhead[thepage/pageref{LastPage}]{thesection. Tabla de contenidos}
rhead[thesection. Tabla de contenidos]{thepage/pageref{LastPage}}
lhead[thepage/pageref{LastPage}]{thesection. Introduccion}
rhead[thesection. Introduccion]{thepage/pageref{LastPage}}
section{Nudo}label{se:nudo}
lhead[thepage/pageref{LastPage}]{thesection. Nudo}
rhead[thesection. Nudo]{thepage/pageref{LastPage}}
section{Desenlace}label{se:des}
lhead[thepage/pageref{LastPage}]{thesection. Desenlace}
rhead[thesection. Desenlace]{thepage/pageref{LastPage}}
bibliographystyle{acm}
bibliography{biblio}
lhead[thepage/pageref{LastPage}]{thesection. Bibliografía}
rhead[thesection. Bibliografía]{thepage/pageref{LastPage}}
end{document}