{chapters} is about the \chapter command which is one of the sectioning commands forming the logical structure of documents. This tag should only be used *in addition* to the more general {sectioning}.
1
vote
1answer
42 views
Display appendix chapter like: “Appendix”, and sections like “Appendix A: My appendix title”
I wish to make my appendix chapter like: "Appendix", and sections like "Appendix A: My appendix title" "Appendix B: My second title" by writing:
\chapter{Appendix}
\section{My appendix title}
...
3
votes
1answer
45 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}}
...
2
votes
1answer
41 views
Editing long chapter titles
I'm now writing a second chapter in my report document. The title of the second chapter is a little bit long so it's touching the edge of the paper. How can I move part of it to a new line? Here is my ...
1
vote
1answer
30 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
52 views
Same vertical spacing for chapter and chapter*
I use \chapter*{} in the \frontmatter and \chapter{} in the \mainmatter.
I use titlesec and the styling of the chapter headings is this:
\documentclass[10pt,a4paper,openany,oneside]{book}
...
...
2
votes
1answer
48 views
Getting chapter and section in \fancyhead
I am having a bit of a heard time getting \fancyhead to give me the out put I want. I'd like to have a header that includes Chapter X: THIS IS THE SECTION (italicized like the default). I can get it ...
0
votes
0answers
47 views
Is it possible to remove chapter number from align environment? [duplicate]
Basically I have written a proof using the align environment in a new .tex file and the numbers in the proof came like this (how I want them):
Line1 (1)
Line2 (2)
Line3 (3)
Now I've ...
5
votes
2answers
39 views
Chapter count not increasing
Consider the following MWE:
\documentclass[12pt,twoside,letterpaper]{report}
\usepackage{etoolbox}
\newcounter{totchapters}
\providecommand\totchap{}
\makeatletter
\AtEndDocument{%
...
1
vote
1answer
41 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
0answers
33 views
what's the best solution to split a .tex file into separate compiled files? [duplicate]
I have a .tex file that includes several chapters (all through the \input command). I would like to run pdflatex in one command such that it saves each chapter into a separate PDF file, while ...
3
votes
1answer
50 views
“Chapter” not appearing in title
I am using the report class to submit my thesis. Since my university wants the word 'chapter' to be in a different font, and the title of the chapter to be in a different format, I made some changes. ...
6
votes
1answer
95 views
Dividing chapters into ch. 1, ch. 2a, ch. 2b, ch. 3 etc
I'm typesetting a book and one of the chapters separates into two chapters so I need it to count like so:
chapter 1
---------
chapter 2a
----------
chapter 2b
----------
chapter 3
---------
...
5
votes
1answer
63 views
Decrease space before and after chapter in fncychap
I would like to decrease the space before and after the chapter name due to space constraints. I am using the fncychap. Here is the MWE:
\documentclass{report}
\usepackage[Glenn]{fncychap}
...
4
votes
1answer
66 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 ...
0
votes
0answers
44 views
removing an unwanted page between two chapters
What could be the reason? Somehow a blank page with some random number gets inserted between two chapters.
\flushbottom
\include{chapter1}
\flushbottom
...
1
vote
1answer
60 views
Memoir chapter page formatting
I am using the memoir class. I have a series of chapters defined, but I need to change the way the chapter title pages are formatted. In particular, by default the text "Chapter X" is spaced a couple ...
1
vote
1answer
40 views
need to change the way title chapters are displayed in 'report' document class
I'm using the report document class and the chapter titles are very large, in bold font, and left justified. I need them to be 18pt, not bold, and centered. I also need the words 'chapter 1' to be ...
0
votes
1answer
42 views
Apply ToC part indenting to chapter
I have a problem with my ToC chapter titles similar to one posted a long while back about part titles. I'm looking for guidance on how to apply these changes to chapter titles. I'm working with the ...
0
votes
4answers
112 views
How to remove chapter numbering without removing it from tableofcontents
It seems I have a two day trying to find out the solution of my problem. I have just finished typing my M.Sc thesis using LATEX (MIKTEX 2.9). Unfortunately, all my chapters begin with the chapter ...
4
votes
1answer
47 views
Concatenating book chapters at the PDF level
There are some LaTeX packages which conflict with each other. When assembling a book from different chapters provided by different contributors, it might be not too easy to resolve these conflicts. In ...
4
votes
2answers
108 views
How to change part and chapter pages on KOMA-Script?
In KOMA-Script classes, how can I change the appeareance (font size, color, arrangment, content, etc.) of the page created by \part an \chapter?
The pagestyle can be changed easily with KOMA-Script ...
3
votes
1answer
65 views
How to find out how many chapters are in a part?
Is there some counter that holds the number of \chapter that are in a \part? Or do I need to define and run my own counter?
7
votes
3answers
98 views
Write “chapter” before list of figures
if I use the \listoffigures command LaTeX creates a new chapter (I'm using the book class), but there is no chapter heading. Is it like it uses \chapter*{List of figures}. Of course this is what we ...
4
votes
2answers
114 views
Vertical rectangle in every page of a single chapter
I want to create a special chapter where there will be a vertical rectangle on the outer side of each page.
I want this box to appear only in this special kind of chapter.
A code I found here is ...
0
votes
1answer
47 views
Customize 'appendix' heading
My appendices are rather small and I want them to come one after another (like \section) without the blank page before \chapter{} (due to openright option). Another problem is that chapter headings ...
4
votes
1answer
45 views
Chapter name appearing in the endnotes
I have a book document with chapters and endnotes. I want endnotes to be separated by chapter, and I have achieved that, following the answer to my earlier question Chapter numbers in endnotes
...
1
vote
0answers
44 views
Cross-referencing (input) multiple tex. files on multiple levels
I´ve recently discovered this site and you might be able to give me some advice working with LaTeX.
Here´s my problem:
My company is working on several user manuals. Each user manual is located in ...
1
vote
1answer
57 views
Get the empty page before a new chapter in ConTeXt?
When starting new chapters on right-hand side, it would better make the previous page empty (no footer and header). This can be done by defining a new pagebreak and setup head,
...
5
votes
1answer
91 views
chapter style with lateral bar
Is is possible to have a different text/layout for the chapter page, and a vertical bar?
What I want to achieve is something like this:
5
votes
1answer
47 views
How to start a new chapter at right hand side in ConTeXt?
I have read the manual and try the
\setuphead
[chapter]
[page=right]
but it has no effect :-(
3
votes
2answers
81 views
Chapterstyle Memoir: Picture on page left, chapter opening on page right
I am working on the layout of my dissertation and I would like to have the following design for all my chapter-openings:
New chapters should always start on the left page, with a picturepage that ...
2
votes
1answer
53 views
Chapter in memoir not displaying correctly in TOC
I'm having a little problem with a custom chapter style in memoir class. I want to have the chapter titles behaving like parts, i.e. having the title on a separate page.
I can do it like so:
...
0
votes
0answers
16 views
How to implement a chapter outline [duplicate]
can you recommend a package and/or a command for a chapter outline?
i wanna display a single chapter toc (limited to section level if possible) after the chapter command/start.
have seen this in a ...
3
votes
1answer
79 views
Memoir Class, Madsen Style, Chapter Heading and Rule
I would like to extend the chapter title and the rule above it to the left, so it is -0.75 in past the text block.
MWE:
\documentclass[oneside,12pt]{memoir}
\usepackage{graphicx}
\begin{document}
...
0
votes
1answer
99 views
Chapter page numbers outside of margins memoir
When I send the file to createspace for their online reviewer, it tells me that a few page numbers are outside the margins, which happen to be the ones for each chapter when each chapter begins. Here ...
3
votes
1answer
47 views
Last chapter number
Is there a way similar to what is achieved by the lastpage package to get the Last Chapter number? I would then like to use this information to design chapter headings.
1
vote
0answers
33 views
Content - items disappeared [duplicate]
I have problem with content. Yesterday was everything ok, but today List of figures and List of tables disappeared. I didn't do any changes with them. Moreover, I do not want to introductory chapter ...
1
vote
3answers
156 views
How can the thesis structure be defined for PDF generation?
My thesis consists of these hierarchical elements:
\documentclass{report}
\begin{document}
\tableofcontents
\include{020-tex}
\end{document
where 020-tex.tex contains
\input{030-preface}
...
1
vote
0answers
81 views
\chapter command in Revtex 4.1
I'm currently writing my Bachelor's thesis in LaTeX using the RevTex 4.1 documentclass (revtex4-1 package). I am using this package because of the clear citation style and nice figure caption layout. ...
3
votes
2answers
128 views
Big number of the chapter
I'm writing my master thesis and I would like to change the number of every chapter with one bigger: I tried to use the package "classicthesis" and it does what I want, but I would change the style ...
3
votes
1answer
135 views
Custom chapter title protruding in left margin
Based on this answer, I tried my hand at defining my own chapter title formatting. The idea is to align the chapter title to the right (a chapter always opening on an odd page) and underline it with a ...
5
votes
1answer
96 views
Different style on chapter than table contents
I tried to style a chapter page using the titlesec and the tikz package like this one :
http://www.texample.net/tikz/examples/fancy-chapter-headings/
But I saw that the table of contents and the ...
2
votes
1answer
70 views
Misalignment of Chapter number and chapter title in memoir southall chapterstyle
I have the number and chapter title in the southall chapterstyle in memoir class not aligned vertically. How to fix it?
3
votes
1answer
49 views
Initial and final chapters appearing in the table of contents without numbering
I'm editing a document whose preamble starts with
\documentclass [12pt, a4paper]{extbook}
I wish the chapter 'Introduction and its sections' appear in table
contents at the beginning of the text ...
1
vote
1answer
85 views
“Chapter” before chapter number in Tufte classes
Is there a way to insert usual "Chapter" before chapter number in Tufte classes, such as "Chapter 1" etc?
1
vote
1answer
58 views
chapter number and title in one row
I need to add both the chapter number and the title in one row with centering: something like "Chapter 2 Title of Chapter".
My code is
\documentclass[12pt,a4paper,oneside]{report}
...
5
votes
1answer
127 views
Emulating book-class-sectioning using titlesec and modifiying it
In short:
Prerequisite: Need to emulate book-class for \part and \chapter using titlesec
Change both to hang, start on same page
Add titlerule to \chapter
I want to optimize my rather hacked ...
2
votes
1answer
82 views
Compile separate document chapters into book w/o duplicate references?
I am trying to collect a set of independent documents, each with its own preamble and
begin{document} and \end{document} lines into a book. I have looked into the subfiles package and tried \include ...
7
votes
1answer
164 views
Chapter style like this without memoir?
I was looking for style inspiration for my thesis and I came across this chapter style:
As far as I am concerned memoir class is capable of this kind of typography like specified in Bringhurst ...
2
votes
0answers
150 views
Table of Contents page numeration in a Latex document
I have a document with Chapters and endnotes, and a table of contents (TOC). In order not to generate a number for the last chapter (Epilogue), I use \chapter*{Epilogue} in the code and then I put an ...


