Это проблема css с плавающим элементом.
Просто добавьте clearfix к содержащему его заголовку div, например:
<style>
[...]
div#header {
overflow: auto;
}
</style>
(см. здесь подробнее)
ОБНОВЛЕНИЕ: по запросу OP, полный код будет
---
title: "report"
author: "who cares"
date: "`r format(Sys.time(), '%d, %B, %Y')`"
output: html_notebook
---
<style type="text/css">
h1.title {
font-size: 38px;
color: DarkBlack;
text-align: left;
}
h4.date { /* Header 4 - and the author and data headers use this too */
font-size: 18px;
font-family: "Times New Roman", Times, serif;
color: DarkBlack;
float: right;
}
h4.author { /* Header 4 - and the author and data headers use this too */
font-size: 18px;
font-family: "Times New Roman", Times, serif;
color: DarkBlack;
float: left;
}
div#header {
overflow: auto;
}
</style>
---