In my current LaTeX
project, I want to have a wide margin next to my text to add notes there. But the problem is that the chapter heading looks a bit "too short". Especially with long headlines it looks strange if a line break has to be made so early. Is it possible to extend the width so that the title is also above the margin notes?
I am using titlesec and marginnote.
MWE:
\documentclass[12pt,a4paper]{book}
\usepackage{titlesec}
\usepackage[left=3.5cm,right=6.5cm,top=4cm,bottom=4cm,headheight=15mm, footskip=15mm,marginparwidth=3.5cm,marginparsep=0.5cm,asymmetric]{geometry}
\usepackage{marginnote}
\titleformat{\chapter}%
{\sffamily\bfseries\Huge}{\thechapter.}{10pt}{}
\usepackage{lipsum}
\begin{document}
\chapter{This is a long chapter title}
\marginnote{\lipsum}
\lipsum
\end{document}