0

I'm editing a family history, and the index is quite long. I'm using the tufte class, and have used the full-width fix for a bibliography spanning several pages.

However, it's not working for my index, which is also several pages long. (I'm wondering if it has to do with the columns?)

\begin{tcolorbox}[enhanced, breakable, colback=white, colframe=white, check odd page, toggle left and right, grow to right by=\marginparwidth+\marginparsep, toggle enlargement=evenpage]
\printindex
\end{tcolorbox}

I've compiled several times, and here is what I get:

enter image description here

As you can see the entire page looks cut off entirely. How can I fix this?

(BTW, I'm more or less a n00b at this, so please let me know if I should provide more information.)

1 Answers1

0

I discovered the reason that the index was printing improperly. In the preamble, setting the symmetric option under \documentclass was the problem. Removing this option also fixes the problem of multiple page bibliographies.

\documentclass[nobib,twoside,openright,justified]{tufte-book}
\usepackage{makeidx}
\makeindex
%...
\begin{document}
\input{main_content.tex}
%...
\printindex
\end{document}

Here is the first page of the index; all of the subsequent pages look fine as well.

full-width index