On Mon, May 2, 2011 at 5:17 PM, Walter <walter...@aruba.it> wrote:
> Hello, and many thanks for developing such a gorgeous class, thanks to
> which I've returned to TeX after 20 years.
Thanks for the kind words!
> I'm using version tufte-book 3.5.0, with TexMaker 3.02 on Ubuntu
> 10.10.
>
> I'm succesfully using \documentclass[a4paper, oneside]{tufte-book}
>
> Only, I would like \chapter NOT to skip a page whenever a chapter
> would start on an even page.
>
> It MUST be something trivial, but I've looked all around the .cls and
> the .def and can't seem to find it.
Add the openany option to the \documentclass line. That will allow
the chapters to start on the left or right page. By default, LaTeX's
books force the chapters to open on the right page.
\documentclass[a4paper,oneside,openany]{tufte-book}
--Kevin Godby