UPDATE: I managed to reduce the problem to the following (turns out it does not relate to classicthesis)
\documentclass[twoside]{report}
\usepackage{marginnote}`enter code here`
\usepackage{lipsum, showframe}
\begin{document}
\begin{titlepage}
\lipsum[1]
\end{titlepage}
\pagenumbering{arabic}
\lipsum[1]
\marginnote{\lipsum[1]}
\lipsum
\end{document}
- If I remove
\pagenumbering{arabic}it works - If I remove the
titlepageit works
How can I get both a title page, arabic page numbering and correct margin notes?
Original Question
I use the classicthesis package and desire to place marginnotes into the larger margin (it's a twosided document). Thus in my preamble I have
\makeatletter
\let\oldmarginnote\marginnote
\renewcommand*{\marginnote}[1]{%
\begingroup%
\ifodd\value{page}
\if@firstcolumn\else\reversemarginpar\fi
\else
\if@firstcolumn\reversemarginpar\fi
\fi
\oldmarginnote{#1}%
\endgroup%
}
\makeatother
Which places the note in the left margin for an even-numbered page, but the space is too large. See the below image

How do I get it into a reasonable position without messing up the format of the document (I tried some geometry related tips, but I wan all margins and such stay the way they are, and simply move the note closer to the body)?

works better but seems to be less customizable than\marginnote. Can you elaborate how isclassicthesisset up formarginpar`? The snippet was copy-pasted from some place I could not find again and I found it places the notes in the right margin. – oarfish Aug 14 '15 at 11:03\reversemarginparafter\chapter{xyz}, the chapter number still switches sides and the margin note is on the opposite side of the page. – oarfish Aug 15 '15 at 08:45showframes). See the edited question. – oarfish Aug 15 '15 at 10:17marginpar? – PhilipPirrip Aug 15 '15 at 10:54marginparappears to work regardless. – oarfish Aug 15 '15 at 11:01