File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -764,6 +764,7 @@ def plot(
764764 backend : Backends = "matplotlib" ,
765765 savefig = False ,
766766 layers = None ,
767+ usetex : bool = False ,
767768 verbose : bool = False ,
768769 ):
769770 if verbose :
@@ -773,18 +774,23 @@ def plot(
773774 return self .plot_matplotlib (
774775 savefig = savefig ,
775776 layers = layers ,
777+ usetex = usetex ,
776778 verbose = verbose ,
777779 )
778780 elif backend == "plotly" :
779- return self .plot_plotly (savefig = savefig )
781+ return self .plot_plotly (
782+ savefig = savefig ,
783+ usetex = usetex ,
784+ verbose = verbose ,
785+ )
780786 elif backend == "plotext" :
781787 return self .plot_plotext (
782788 savefig = savefig ,
783789 layers = layers ,
784790 verbose = verbose ,
785791 )
786792 elif backend == "tikzfigure" :
787- return self .plot_tikzfigure (savefig = savefig )
793+ return self .plot_tikzfigure (savefig = savefig , verbose = verbose )
788794 else :
789795 raise ValueError (f"Invalid backend: { backend } " )
790796
You can’t perform that action at this time.
0 commit comments