I am using nbconvert
for converting my .ipynb into an .pdf file. When doing so the resulting .pdf file contains a header with the filename and the current date below. How can I disable that?
I was looking in the docs but cannot find how to do it.
CLI command
jupyter nbconvert --to pdf filename.ipynb
Actual
Wanted
I found some helpful pointer in the docs. Just follow these steps:
jupyter --paths
in your command-line./Users/username/.venv/venvName/share/jupyter
(I run nbconvert from a venv. Could be different for you).latex
hide_header
or whatever you wantbase.tex.j2
and delete the line ((* block maketitle *))\maketitle((* endblock maketitle *))
jupyter nbconvert --to pdf filename.ipynb --template=hide_header