{header-footer} is about customizing headers and footers, i.e., choosing a page style for certain pages (e.g. empty, plain, headings) and (for the styles employed) placing information like the current section title and page number. Popular packages are {fancyhdr}, {scrpage2}, and {titleps}.

learn more… | top users | synonyms (2)

1
vote
1answer
7 views

\pagestyle{empty} on a specific number of pages

I would like to remove the style of my report on my table of contents. I formerly used \thispagestyle{empty} before \tableofcontents but it obviously works only for the first page of the table of ...
3
votes
1answer
17 views

Using amsart, make running heads title of the current section?

Using the amsart document class, how can I replace all the running heads with the title of the current section? Is there a way to do this natively in the class, or am I looking at needing fancyhdr, or ...
4
votes
1answer
36 views

Put something manually into the header of the current page

Is it possible to write something custom into the header of the current page for example like this pseudocode \documentclass{article} \begin{document} \thispageheader[R]{My Text} %Displays only ...
1
vote
0answers
25 views

fancyhdr - header and footer for all pages including first page

I'd like to insert header and footer for ALL pages INCLUDING first page Here is LaTeX code currently I use: \pagestyle{empty} \renewcommand{\headrulewidth}{0.0pt} \pagestyle{fancy} \lhead{} ...
2
votes
1answer
28 views

Page number in page which contain the name of the chapter

I would like to insert in each page the chapter name and number (bottom right) The problem is that this configuration does not apply to pages that contain the name of the chapter! My code : ...
2
votes
1answer
55 views

How to change the chaptermark of bibliography

In previously asked questions about changing the chaptermark in a bibliography, I couldn't get a solution for my problem. That is why I'm asking a new question. I'm writing my thesis. The references ...
5
votes
1answer
68 views

Beamer: Add an progress bar image based on page number

I would like to add a "progress bar" to my presentation slides (the MWE below is for an article though). I have 25 images named pbar1.png to pbar25.png, as shown below, to be put on slides: ...
2
votes
1answer
35 views

Only name of section in header + underlined

I'm now trying to tweak the headers of my book document. I only need the name of the section in the header and I want it to be underlined and no uppercase letters! \documentclass{book} ...
2
votes
1answer
42 views

Setting memoir's \pagestyle within an environemnt

I am defining an environment with \newenvironment, and inside this environment, I want to change the memoir page style. For instance, I want to do \begin{myenvironment} and inside this environment, ...
3
votes
1answer
30 views

How to make the first page of index fancy

I have a file called index.tex that looks like this: \begin{theindex} \item apple, 39 \item banana, 23 ... lots more of this stuff stretching over say 4 pages \end{theindex} I include it in a MWE ...
3
votes
1answer
55 views

How can I stop content overlapping my footer?

I am trying to use LaTeX to generate PDF versions of cheat sheets people build on my website. They are all three column documents, effectively each containing multiple tables. For the most part, ...
0
votes
0answers
19 views

How can I remove a line running across the top of the first page of the pages for references?

I used \usepackage{etoolbox}% http://ctan.org/pkg/etoolbox \patchcmd{\chapter}% <cmd> {plain}% <search> {main}% <replace> {}{}% <success><failure> ...
1
vote
1answer
40 views

How to manipulate footer

I am trying to write a footer in every page, but the text in footer (only a few words), is too close to the text of the page. So I want the footer text to shift little bit to the end of the actual ...
0
votes
1answer
27 views

How to insert footer in first pages of chapter?

I am using fancyhdr to make header and footer for pages. In the minimal example the footer is not appearing in the first page of chapter. I want footer to be appear in the first pages of the chapter ...
4
votes
1answer
38 views

Hide page numbering but retain header/footer

I would like to remove page numbering on a specific page. However, the header and footer should remain intact. If I try: \thispagestyle{empty} The header and footer disappear. What is the ...
1
vote
1answer
40 views

How can change the position of the pagenumbering in the bibliography?

I need to get the pagenumber on the first page of the bibliography in the top right hand corner of the page. The pagenumber is currently centred on the bottom of the page.
5
votes
1answer
63 views

How can I put the page numbers where I need them?

I need to put the number for each page that is numbered at the top right hand corner of the document. Currently that condition is satisfied except for the first page of each chapter. That is, for the ...
1
vote
1answer
48 views

Tufte running headers not using full width of page

I use Minion Pro and XeLaTeX together with the tufte class. There is an issue with caps in headers (as can be noticed if removing the two line marked %% headings fixes below). My fix is to use the ...
6
votes
0answers
50 views

Koma-script scrpage2 footer height

After lots of googling and hair-tearing, I'm turning grey and old, and no wiser... EDIT : see bottom for a half-cooked solution. I switched from LaTeX plain classes (article, report, etc.) to ...
3
votes
0answers
75 views

How to have headers, section headings, and figures expand into the margin?

I am interested in the following page layout. How to have headers in margins (up to margin) Is it possible to start section headings from margin How to set figures occupy the margins. I can ...
2
votes
1answer
57 views

Automatically shorten living column title or have a linebreak

I have a long document that has several long chapters. Each chapter has a title which can be short or long (often it is very long). I noticed that if I use \pagestyle{headings} in the scrreprt class ...
1
vote
0answers
29 views

headlines are not shown with tikz input (plain TeX) [duplicate]

I'm usign plain TeX with custom headlines. If I load Tikz packages with \input tikz then headlines are blank. The following are my headlines (some commands don't belong to plain TeX, but I think ...
1
vote
1answer
67 views

Specific title page and other slide footer in latex beamer

I need to create title page like this 1st image and other slides like the 2nd image. I also need to add logo as a image (to header,footer) and footer like this..(different footer in title page)I used ...
3
votes
1answer
51 views

How to remove 'Chapter 1.' from 'Chapter 1. Introduction' while using \leftmark?

MWE is below: \documentclass{report} \usepackage{fancyhdr} %\newcommand{\currentchapter}{} %\let\oldchapter\chapter %\renewcommand{\oldchapter}[1]{\oldchapter{#1}\renewcommand{\currentchapter}{#1}} ...
6
votes
2answers
141 views

Alternatives to the horizontal line in fancyhdr

I'm looking for a more fancy alternative to the default (read boring) horizontal line produced under the fancyhdr package. How creative can we get?
1
vote
1answer
38 views

KOMA-Script: Use scrheadings on chapterpage, but only the footer (not the header)

I'm using the KOMA-Script and have page-numbers at the bottom of my document. The headline contains the chapter/section-name. By default, the chapterpagestyle is plain (or empty). So I set it to ...
4
votes
1answer
117 views

Changing color and header of beamer with CambridgeUS

How to change the red color for - the titles - the topics How to adjust the position of the header1 and 2? \documentclass{beamer} \usetheme{CambridgeUS} % Set Color ============================== ...
1
vote
1answer
68 views

Customize page numbering so all pages are equally formatted in book class

The title says it all. A friend is working on her thesis and we cannot figure out how to ensure that the page numbering is equally formatted on all the pages that display page numbers. Default ...
0
votes
0answers
14 views

header and footer not appearing on first page of contents, list of figures and list of figures [duplicate]

My report contains a table of contents spanning three pages, and a list of figures page spanning three pages, and a table of contents on a single page. Unfortunately the header and footer is not ...
0
votes
0answers
44 views

Beamer: Move frame numbers and change their font

How can I move the frame number of my slides on the top right corner, with the number aligned with the frame title? And how can I change the color font of the numbers?
2
votes
1answer
69 views

Remove author and institution in footline

I am writing a beamer presentation using the CambridgeUS theme but my presentation has multiple authors and their names do not fit in the footline at the author section. I want to delete all of their ...
2
votes
1answer
93 views

Make headers display chapter title, not book title in tufte-book

I'm creating an edited volume with the tufte-book \documentclass. Each chapter is written by a separate author. I'm trying to get the header to display the name of each chapter and its author. At the ...
5
votes
1answer
126 views

Tables as Header and footer

I've been struggling with my .tex for quite some time now, and decided its time to look for help. This is the situation: all docs here (my office) need to bring, as header, a table (3 columns) which ...
0
votes
1answer
89 views

Running Header w/ Tufte Latex

I'm trying to get a running header on the pages of a Tufte-formatted document. How does one do this? I put in information about the \title, \author, \publisher but this results in errors. Any help ...
6
votes
1answer
117 views

Code improvement and suggestions in template

Consider the following MWE: \documentclass[12pt,twoside,letterpaper]{report} \usepackage[text={4.95in,7.5in},centering,bottom=1.5in,showframe]{geometry} \usepackage[dvipsnames]{xcolor} ...
1
vote
1answer
52 views

Right/left align chapter number and center the chapter title on the next page

I want to left or right align my chapter number, and center the chapter title on the next page. I've used the \titlesec package, but it removes the header and footer on the first page of every ...
3
votes
1answer
35 views

Removing Section Name in Heading of Reference Page

I am using the \pagestyle{myheadings} command to put page numbers on my document which does not include the Section Name in the heading. However, that does not seem to work on the References page of ...
2
votes
1answer
66 views

Page number position on page with table of contents

I want to position page numbers in my document in top-right corner. I managed to do so using fancyhdr (see below). \usepackage{fancyhdr} \hypersetup{% pdfborder = {0 0 0} } ...
1
vote
0answers
50 views

Explanation of a word in a footnote at the bottom of the page [duplicate]

I want to provide an explanation for a word as a footnote at the bottom of the page in which the word appears. For instance, in the main text, I would have Here is my word¹ and, in a footnote ...
8
votes
2answers
139 views

Gobble page numbers

In my document I have 5 pages that consist of the chapter name. I want these pages not to have page numbers displayed and not to contribute to the page numbering. This is what I am trying to achieve: ...
3
votes
0answers
46 views

Footers are disappearing when adding text “behind” title page

I have a "book" with a cover and several chapters and appendices. I need to add some text and images (publishers) "behind" the cover. So I tried the \newpage command after the title page. It worked, ...
3
votes
1answer
48 views

What is the proper way of moving my content but not my header/footer?

My header and footer are all set. Size and position are good. However, I want to push the actual content to the right and down (creating big margins at the top and left of the document). See this ...
1
vote
1answer
38 views

Insert image in the header

I am a real beginner in LyX and I want to insert a small image into the header. Actually I want to insert two images. But let's begin by one. I have no idea how to do this and would appreciate any ...
2
votes
1answer
35 views

Empty page on the Part page

I'm using this on my document (scrartcl documentclass): \usepackage{etoolbox} \pretocmd{\section}{\cleardoubleevenemptypage}{}{} \pretocmd{\part}{\cleardoubleevenemptypage}{}{} This makes me get ...
6
votes
1answer
63 views

Want to get 'book name, and 'chapter name, in header

I asked a question to get 'chapter name' and 'section' in the header in the following link : \markboth is not working when using \chapter and \section. Now I have decided to replace the section name ...
0
votes
0answers
35 views

How to make page Footer Margin 0.75'' from bottom page?

I currently use LyX, and upload the package fancyhdr to try to solve this problem. However, it is not evident to me which of the commands would do this for me... Trying to file my doctoral ...
1
vote
1answer
56 views

LaTeX {scrreprt} page numbering [duplicate]

I'm writing in LaTeX a scrreprt onesided document, for which I would like to number the pages on the right side of the footer (don't need anything more in the footer). I've found this: ...
4
votes
1answer
69 views

Chapter name overrunning page

I am editing a collection of documents, a few of which the author has given such long titles that, when they are formatted as chapters, the heading overruns the page. The following code should ...
2
votes
1answer
94 views

Beamer: changing footline background color

I would like to make the footline color black and the text white. I found this: Beamer: Background Color for Footline but didn't understand how it applied to my example. \documentclass{beamer} ...
2
votes
1answer
75 views

Beamer: How to remove shadows under header

I would like to remove the shadow (gradient fading) under the header. \documentclass{beamer} \usetheme{Frankfurt} \usecolortheme{dove} \setbeamercolor{section in head/foot}{fg=white, bg=black} ...

1 2 3 4 5 18