나는 Jupyter notebook
을 LaTex
을 통해 nbconvert
을 통해 PDF로 변환하기 위해 Jinja2
템플릿을 쓰려고합니다. 또한 마크 다운 세포 또는 이미지 캡션을 표시하지 않고 나의 현재 시도는 다음과 같은 출력 나의하기 matplotlib 그래프의 모든 이상을 보여줍니다Jupyter nbconvert에 대한 Jinja2 템플릿 작성 방법으로 markdown을 표시하고 출력 번호를 표시하지 않으시겠습니까?
out[1]: <matplotlib.axes._subplots.AxesSubplot at 0x2e62e885cc0>
내가 인하 세포와 캡션을 표시하고하기 matplotlib 객체 설명을 억제하고 싶습니다.
내 현재의 템플릿은 nbconvert의 GitHub의의의 repo에서 호스팅 하나에서 적응이고 다음과 같이한다 :이 거의의 많은처럼 보인다
% Default to the notebook output style
((* if not cell_style is defined *))
((* set cell_style = 'style_ipython.tplx' *))
((* endif *))
% Inherit from the specified cell style.
((* extends cell_style *))
%===============================================================================
% Latex Book
%===============================================================================
((* block docclass *))
\documentclass{report}
((* endblock docclass *))
% Author and Title from metadata
((* block maketitle *))
((*- if nb.metadata["latex_metadata"]: -*))
((*- if nb.metadata["latex_metadata"]["title"]: -*))
\title{(((nb.metadata["latex_metadata"]["title"])))}
((*- endif *))
((*- else -*))
\title{(((resources.metadata.name)))}
((*- endif *))
\date{\today}
\maketitle
((* endblock maketitle *))
((* block markdowncell scoped *))
(((cell.source | citation2latex | strip_files_prefix | convert_pandoc('markdown+tex_math_double_backslash', 'json',extra_args=[]) | resolve_references | convert_pandoc('json','latex', extra_args=["--chapters"]))))
((* endblock markdowncell *))
% Disable input cells
((* block input_group *))
((* endblock input_group *))