如何使用 nbconvert 从 ipynb 生成的 pdf 中删除日期

How to remove date from pdf produced from ipynb with nbconvert

我正在以编程方式使用 nbconvert 将 jupyter notebook 文件导出为 pdf:

import nbformat
from nbconvert.exporters import PDFExporter
from nbconvert.preprocessors import TagRemovePreprocessor
from traitlets.config import Config

c = Config()
c.TagRemovePreprocessor.remove_cell_tags = ("remove_cell",)
c.PDFExporter.preprocessors = ["nbconvert.preprocessors.TagRemovePreprocessor"]
c.PDFExporter.exclude_input_prompt = True
c.PDFExporter.exclude_output_prompt = True
c.PDFExporter.exclude_input = True

exporter = PDFExporter(config=c)
exporter.register_preprocessor(TagRemovePreprocessor(config=c),True)

with open("example.ipynb") as f:
    nb = nbformat.read(f, as_version=4)

pdf_data, _ = exporter.from_notebook_node(nb)

with open("example.pdf", "wb") as f:
    f.write(pdf_data)

这有效,但是今天的日期会插入到标题下的文档中。

这个日期在我正在制作的内容中具有误导性。

我试图删除它涉及编辑 share\jupyter\nbconvert\templates\latex\base.tex.j2:

\renewcommand{\TeX}{\textrm{\Oldtex}}
\renewcommand{\LaTeX}{\textrm{\Oldlatex}}
% Document parameters
% Document title
((* block title -*))
((*- set nb_title = nb.metadata.get('title', '') or resources['metadata']['name'] -*))
\title{((( nb_title | escape_latex )))}
((*- endblock title *))
((* block date *))((* endblock date *))
((* block author *))
((* if 'authors' in nb.metadata *))
\author{((( nb.metadata.authors | join(', ', attribute='name') )))}
((* endif *))
((* endblock author *))

并删除行 ((* block date *))((* endblock date *)) 但这似乎没有效果。

我知道导出过程中正在使用该文件,因为如果我向其中插入乱码,则导出会失败。

知道日期的来源吗?

默认情况下,日期设置为`\date{\today},您可以通过将其设置为其他内容来覆盖它,例如参数为空:

\date{}