[Tex/LaTex] margin location in tufte-class

double-sidedmarginstufte

By default I have observed that the margin is always on same side of the page, i.e irrespective of the page being the left page or right page the margin is always on the right hand side of the page. Is there a way to make the margin on left page appear on the left and margin on the right page appear on the right?

Best Answer

Use the symmetric option of the class.

\documentclass[twoside,symmetric]{tufte-book}
\usepackage{lipsum}
\begin{document}
test\sidenote{this}
\lipsum
test\sidenote{that} 
\end{document}