##// END OF EJS Templates
Merge pull request #3578 from jakobgager/latex_image_handle...
Merge pull request #3578 from jakobgager/latex_image_handle Use adjustbox to specify figure size in nbconvert -> latex Instead of hardcoding the image size used when compiling latex, a maximum size is specified only. This way smaller images don't get enlarged. The Sphinx converter use the same approach.

File last commit:

r11135:16279804
r11252:0e65ed03 merge
Show More
__init__.py
11 lines | 398 B | text/x-python | PythonLexer
MinRK
fix HTML capitalization in exporter classes
r11108 from .basichtml import BasicHTMLExporter
Brian E. Granger
Fixing import logic.
r11088 from .export import *
from .exporter import Exporter
MinRK
fix HTML capitalization in exporter classes
r11108 from .fullhtml import FullHTMLExporter
damianavila
Added relative import of RevealExporter to __init__.py inside exporters module.
r11135 from .reveal import RevealExporter
Brian E. Granger
Fixing import logic.
r11088 from .latex import LatexExporter
from .markdown import MarkdownExporter
from .python import PythonExporter
from .rst import RstExporter
from .sphinx_howto import SphinxHowtoExporter
from .sphinx_manual import SphinxManualExporter