From da7dbd6f765e8faf672dc067b894df8775d99f39 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Mon, 14 Mar 2022 14:16:54 +0100 Subject: [PATCH] Revert "annotations over marksers in pgfplotsx backend (#3957)" This reverts commit 06bc99ef68dca50fd3f91cadff0b5d210ad3fdbf. --- src/backends/pgfplotsx.jl | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/backends/pgfplotsx.jl b/src/backends/pgfplotsx.jl index 41712e16..f88a65aa 100644 --- a/src/backends/pgfplotsx.jl +++ b/src/backends/pgfplotsx.jl @@ -162,7 +162,6 @@ function (pgfx_plot::PGFPlotsXPlot)(plt::Plot{PGFPlotsXBackend}) "anchor" => "north west", "xshift" => string(dx), "yshift" => string(-dy), - "clip mode" => "individual", ) sp_width > 0 * mm ? push!(axis_opt, "width" => string(axis_width)) : nothing sp_height > 0 * mm ? push!(axis_opt, "height" => string(axis_height)) : nothing @@ -1056,11 +1055,7 @@ function pgfx_add_annotation!( push!( o, join([ - raw""" - \begin{scope} - \clip \pgfextra{\pgfplotspathaxisoutline}; - \node - """, + "\\node", sprint( PGFPlotsX.print_tex, merge( @@ -1079,7 +1074,6 @@ function pgfx_add_annotation!( ), ), string(" at (", cs, x, ",", y, ") {", val.str, "};"), - "\\end{scope}", ]), ) end