Page LayoutDouble "Appendices"

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
danbaatar
Posts: 8
Joined: Mon Apr 26, 2010 11:14 pm

Double "Appendices"

Post by danbaatar »

I'm trying to use the appendix package to add a header to the appendix section of a document I am writing (dissertation proposal).

When I use the \appendixpage command, I get several errors, that I think have to do with the fact that I am using a non-standard document class. In the end, though, I do get what I want, a heading above the first appendix that says "Appendices". Unfortunately, I also get an extra blank page with just the word "Appendices" on it.

I'd prefer the heading that comes right before the first appendix, but either one would be alright, as long as there was just one of them.

Here is my MWE:

Code: Select all

\documentclass{byuPhDprop}
\usepackage{appendix}

\begin{document}
  \section{Test Section}
  Section text.
  \appendix
  \appendixpage
  \section{AppendixTitle}
  Appendix text
\end{document}
Any help would be appreciated.

Thanks,
dan
Attachments
byuPhDprop.cls
The dissertation proposal style file.
(6.87 KiB) Downloaded 258 times

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

danbaatar
Posts: 8
Joined: Mon Apr 26, 2010 11:14 pm

Re: Double "Appendices"

Post by danbaatar »

I've done a bit more digging and still haven't found anything. Does anyone have any ideas?
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Double "Appendices"

Post by frabjous »

The appendix package says that it typesets this header with the style of \part from the document class. Why not just use \part*, in which case you don't need the package?

Code: Select all

\documentclass{byuPhDprop}

\begin{document}
    \section{Test Section}
    Section text.
    \clearpage% leave out if you don't want to start on a new page
    \appendix
    \part*{Appendixes}
    \section{AppendixTitle}
    Appendix text
\end{document}
danbaatar
Posts: 8
Joined: Mon Apr 26, 2010 11:14 pm

Re: Double "Appendices"

Post by danbaatar »

Thanks, that worked perfectly.
Post Reply