Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

If set, use nb.metadata.authors for LaTeX author line #867

Merged
merged 1 commit into from Aug 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion nbconvert/templates/latex/base.tplx
Expand Up @@ -152,7 +152,11 @@ This template does not define a docclass, the inheriting class must define this.
\title{((( nb_title | ascii_only | escape_latex )))}
((*- endblock title *))
((* block date *))((* endblock date *))
((* block author *))((* endblock author *))
((* block author *))
((* if 'authors' in nb.metadata *))
\author{((( nb.metadata.authors | join(', ', attribute='name') )))}
((* endif *))
((* endblock author *))
((* endblock definitions *))

((* block commands *))
Expand Down