Issue
I want to make a Jupyter Notebook file that also can be converted to PDF for the report. I would like to add Title and Author field, so when it's converted to PDF, the author and title field will show like the usual LaTeX PDF metadata format (Author & Title centered). How can I write it on the cell (because I use online Jupyter Notebook instead of installed it in local machine)?
Solution
Insert the text:
"title": "My Title!",
"authors": [
{ "name": "Author1" },
{ "name": "Author2" }
]
at the end of the metadata notebook.
Also, add a comma above where the text is added. The configuration that you can see in the screenshot below worked for me:
Answered By - Ido Sar Shalom
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.