Search found 16 matches

by Txuko
Sun Apr 24, 2011 11:36 am
Forum: Page Layout
Topic: Headers and Footers on Float Pages
Replies: 4
Views: 3529

Re: Headers and Footers on Float Pages

Thanks. That was the solution.
by Txuko
Sat Apr 23, 2011 9:20 pm
Forum: Page Layout
Topic: Headers and Footers on Float Pages
Replies: 4
Views: 3529

Headers and Footers on Float Pages

Sorry. Then another command is causing that behaviour. It's this script. The script was made to remove the headers in empty pages, but it removes the headers in float pages too. ¿How can I avoid to remove the headers and footers in float pages?

\makeatletter
\def\clearpage{%
\ifvmode
\ifnum ...
by Txuko
Sat Apr 23, 2011 5:25 pm
Forum: Page Layout
Topic: Headers and Footers on Float Pages
Replies: 4
Views: 3529

Headers and Footers on Float Pages

LaTeX with fancyhdr and fancy page style by default removes the headers and footers in pages with only floats (without text). ¿How can I keep the headers and footers in float pages? ¿Maybe any command with \iffloatpage?

Thanks
by Txuko
Thu Apr 21, 2011 2:09 pm
Forum: Page Layout
Topic: Page border colors
Replies: 5
Views: 6885

Re: Page border colors

Good solution. Thanks.
by Txuko
Thu Apr 21, 2011 10:46 am
Forum: Page Layout
Topic: Page border colors
Replies: 5
Views: 6885

Page border colors

Thanks.

Now I can make an index and put marks in different possitions for each chapter but I don't know how to use different colors for the marks. They are all black.


\documentclass[a4paper]{book}

\setlength{\unitlength}{18mm}

\newcommand{\blob}{\rule[-.2\unitlength]{.5\unitlength}{.5 ...
by Txuko
Wed Apr 20, 2011 7:55 pm
Forum: Page Layout
Topic: Page border colors
Replies: 5
Views: 6885

Page border colors

I want to put color marks in the border of each page with a color and a position for each chapter. This allows to move easily to any chapter by watching the edge of the book.

How can I do that?

Thanks
by Txuko
Sat Feb 05, 2011 12:23 am
Forum: General
Topic: Appendix and index
Replies: 6
Views: 8088

Re: Appendix and index

I didn't know the bookmarksnumbered option. With this option and the previous changes I think the problem is solved.

Thank you very much.
by Txuko
Fri Feb 04, 2011 10:57 pm
Forum: General
Topic: Appendix and index
Replies: 6
Views: 8088

Re: Appendix and index

That solves the problem of the index but does not solve the problem with the hyperref contents for the pdf.

Although it seems to work, it give me this error during compilation of the full document (not with the example):
LaTeX Error: Command \c@lofdepth already defined.

This seems complicated ...
by Txuko
Fri Feb 04, 2011 8:49 pm
Forum: General
Topic: Appendix and index
Replies: 6
Views: 8088

Appendix and index

OK, sorry.


\documentclass[12pt,a4paper]{book}
\usepackage{appendix}
\usepackage{hyperref}
\begin{document}

\tableofcontents

\chapter{Intro}
...
\chapter{Concl}
...
\appendix
\cleardoublepage
\chapter{My appendix 1}
...
\chapter{My appendix 2}
...
\end{document}
by Txuko
Fri Feb 04, 2011 7:23 pm
Forum: General
Topic: Appendix and index
Replies: 6
Views: 8088

Appendix and index

If I use:

\appendix
\cleardoublepage
\chapter{My appendix 1}
\chapter{My appendix 2}


In the index is shown:

A.My appendix 1
B.My appendix 2

And I want to view:
Appendix A. My appendix 1
Appendix B. My appendix 2

In the appendix chapter title the 'Appendix A' label is added OK, but it isn't ...