[Tex/LaTex] Tufte-book title page customization

graphicstitlestufte

I have this code:

\documentclass{tufte-book}

\begin{document}

    \title{Some stuff\\ \& \\Some other stuff}
    \author{Me}
    \date{Fall 2014}

    \maketitle

\end{document}

The title doesn't break into three lines; instead I get an error. Is there a way to fix this?

I also want to add an image to the cover. What's the best way? Do I need to redefine \maketitle (ugh), or is there something simpler?

Best Answer

You should set the \title, \author and \date in the preamble:

enter image description here

\documentclass{tufte-book}
\usepackage{graphicx}

\newsavebox{\titleimage}
\savebox{\titleimage}{\includegraphics[height=7\baselineskip]{example-image}}

\title[Some stuff \& Some other stuff]{%
  \setlength{\parindent}{0pt}%
  Some stuff \par \& \par Some other stuff \par \vspace{1cm}
  \usebox{\titleimage}}
\author{Me}
\date{Fall 2014}

\begin{document}

\maketitle

\end{document}

Images should also be handled specially. Above I've placed the image in a box before including it in the \title.

Related Question