From 77907a073eff5a6066aa47bee7d866096c4740e9 Mon Sep 17 00:00:00 2001 From: Alexander Dunlap Date: Wed, 3 May 2023 10:14:37 -0400 Subject: [PATCH] Add pythonplot to tex output (#342) Add pythonplot to list of backends that can output tex, since it seems that it can indeed output tex using its PGF backend. --- docs/src/output.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/output.md b/docs/src/output.md index 986c868480..e50c8c4444 100644 --- a/docs/src/output.md +++ b/docs/src/output.md @@ -69,7 +69,7 @@ A simple table showing which format is supported by which backend | png | gr, plotlyjs, pythonplot, pgfplotsx, inspectdr, gaston, unicodeplots | | ps | gr, pythonplot | | svg | gr, inspectdr, pgfplotsx, plotlyjs, pythonplot, gaston | -| tex | pgfplotsx | +| tex | pgfplotsx, pythonplot | | text | hdf5, unicodeplots | Supported file formats can be written to an IO stream via, for example, `png(myplot, pipebuffer::IO)`, so the image file can be passed via a PipeBuffer to other functions, eg. `Cairo.read_from_png(pipebuffer::IO)`.