Page LayoutChapter Layout

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
magarcan
Posts: 3
Joined: Wed Jun 30, 2010 3:14 pm

Chapter Layout

Post by magarcan »

Hello everyone! I've a problem using minitoc inside mi chapters. This is my code:

Code: Select all

\documentclass{pfc}
\usepackage{minitoc}
...
\begin{document}

\dominitoc
\dominilof
\dominilot
\tableofcontents
\listoffigures 
\listoftables 
\listof{program}

\mainmatter

\part{Memory}

\chapter{Intro}
\label{cha_intro}
\minitoc
\minilof
\minilot
Bla bla bla...

\section{This is the section}
Bla bla bla...

\section{Another section}
Bla bla bla...
...
\end{document}
I want a minitoc of the sections in each chapters, but minitoc only shows: Figures's minitoc and Tables's minitoc, but sections's minitoc doesn't appears. Any Idea?

Thanks!!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
Stefan Kottwitz
Site Admin
Posts: 10358
Joined: Mon Mar 10, 2008 9:44 pm

Chapter Layout

Post by Stefan Kottwitz »

Hi magarcan,

welcome to the board!
Perhaps post a compilable minimal working example. That would allow testing and correction. It improves the chance to get a solution.

Stefan
LaTeX.org admin
magarcan
Posts: 3
Joined: Wed Jun 30, 2010 3:14 pm

Chapter Layout

Post by magarcan »

Here it is my minimal working example:

Code: Select all

\documentclass{pfc}

\usepackage{minitoc}

\begin{document}

\minitoc
\tableofcontents
\listoffigures 
\listoftables 

\mainmatter
\part{Memoria}
\chapter{Introducción}
\label{cha_intro}
\minitoc
Bla bla bla
\newpage

\section{Section}
Bla bla bla

\section{Section 2}
Bla bla bla

\section{Section 3}
Bla bla bla

\backmatter

\end{document}
Thanks!!
Post Reply