From 77b59510373b80cb0c990fa34b4291eac053a07a Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Wed, 22 Apr 2020 19:00:20 +0200 Subject: [PATCH] fix savefig for .tex extension --- src/output.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/output.jl b/src/output.jl index 003deec4..96f65d3d 100644 --- a/src/output.jl +++ b/src/output.jl @@ -88,6 +88,7 @@ const _savemap = Dict( "tex" => tex, "json" => json, "html" => html, + "tex" => tex, "tikz" => tex, "txt" => txt, )