Sorry if that's a silly question, but it really confuses me.
I want to use nbconvert in Jupyter Notebook to export PDF and HTML file for sharing. I must keep the output cell (mostly matplotlib subplots) and hide the input cell (code). However, I cannot hide the output of using nbconvert command.
For example, if I command:
!jupyter nbconvert --to pdf --no-input grmd4203.ipynb
And it will get:
[NbConvertApp] WARNING | Config option `dpi` not recognized by `PDFExporter`.
[NbConvertApp] Converting notebook grmd4203.ipynb to pdf
[NbConvertApp] Support files will be in grmd4203_files\
[NbConvertApp] Making directory .\grmd4203_files
[NbConvertApp] Making directory .\grmd4203_files
[NbConvertApp] Making directory .\grmd4203_files
[NbConvertApp] Making directory .\grmd4203_files
[NbConvertApp] Writing 25260 bytes to notebook.tex
[NbConvertApp] Building PDF
[NbConvertApp] Running xelatex 1 time: ['xelatex', 'notebook.tex', '-quiet']
[NbConvertApp] Running bibtex 1 time: ['bibtex', 'notebook']
[NbConvertApp] WARNING | b had problems, most likely because there were no citations
[NbConvertApp] PDF successfully created
[NbConvertApp] Writing 922426 bytes to grmd4203.pdf
at the end of the page.
Can I hide this part even if I want to keep my graphs visible? I can manually delete them in pdf file but I cannot remove them in the created HTML file. That's really sad.