Export a Plot as Tikz to Latex
Hello,
a couple of days ago I drew a Polyhedra in sage cell Server and exported it as a Tikz file. like this:
P1 = Polyhedron(vertices = [[0,0,0], [1,2,1], [-4,-3,-2],[3,3,-2],[1,-4,3],[-2,2,1]]) P1.tikz([-0.0946,-0.4796,-0.8724],160.47, axis=true, opacity=0.25)
Now I got an Arrangement of Hyperplanes like: H3.<x,y,z> = HyperplaneArrangements(QQ) A = H3([(1,2,1), 0], [(-4,-3,-2), 0],[(3,3,-2), 0], [(1,-4,3), 0],[(-2,2,1), 0]) that I want to export as a Tikz file but it seems that this is not possible. Or am I just doesnt find it? Anyone there that can maybe help me?
Best regards
Lars Kroll
That's because nobody has written the tikz method for hyperplane arrangement. Open source means that you can do it yourself to provide that for everybody else.