Hi,
I have two formatting problems:
1- one of the footnote of my document (using \footnote) with length of 3 lines is splitted over two pages. that is, one line on 1 page and the rest on the next page. How could I keep it in on one page?
2- I have a document that the title of each chapter is displayed automatically on each page of the chapter (without using any option). In this document, I have a list of acronyms using acronym package. The list of table precedes list of acronyms. I have made the title of the list of acronyms with \chapter*{List of Acronyms}. But I see that "list of tables" appears on each page of list of acronyms. How could I make it disapear or replace by "list of acronyms"? I have this problem only with this chapter that was entitled by \chapter*{} and not with other chapters entitled by \chapter.
Look forward to your reply,
carol
Page Layout ⇒ foonote and chapter heading problems
NEW: TikZ book now 40% off at Amazon.com for a short time.
Re: foonote and chapter heading problems
I realized that chapter heading is displayed by \pagestyle{headings} that I use. But why was the heading of \chapter*{List of Acronyms} not taken in the list of headings?
- Stefan Kottwitz
- Site Admin
- Posts: 10320
- Joined: Mon Mar 10, 2008 9:44 pm
foonote and chapter heading problems
Hi Carol,
you could fix that by \markboth, like
Stefan
you could fix that by \markboth, like
Code: Select all
\markboth{List of Acronyms}{List of Acronyms}
LaTeX.org admin
foonote and chapter heading problems
I added \markboth as follows:
but it starts from the list of tables which precedes list of acronyms. Why?
Any clue for the long footnote?
Code: Select all
\listoftables
\addcontentsline{toc}{chapter}{List of Acronyms}
\markboth{List of Acronyms}{LIST OF Acronyms}
\input{abbrev.tex}
Any clue for the long footnote?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
foonote and chapter heading problems
Unnumbered chapters introduced by the \chapter* command are neither displayed in the ToC nor as title columns. Others than the standard classes have built-in features to achieve that. For standard classes the approach of Stefan is appropriate.carol wrote:I realized that chapter heading is displayed by \pagestyle{headings} that I use. But why was the heading of \chapter*{List of Acronyms} not taken in the list of headings?
Add a \newpage right after the \listoftables command.carol wrote: I added \markboth as follows:but it starts from the list of tables which precedes list of acronyms. Why?Code: Select all
\listoftables \addcontentsline{toc}{chapter}{List of Acronyms} \markboth{List of Acronyms}{LIST OF Acronyms} \input{abbrev.tex}
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10