#!/usr/bin/env python # coding: utf-8 # In[ ]: import k3d plot = k3d.plot() plot += k3d.text('\\int_{-\\infty}^\\infty \\hat f(\\xi)\\,e^{2 \\pi i \\xi x} \\,d\\xi', [0,0,0], color=0, size=1.5, reference_point='lt') plot += k3d.text('{(1,1,\\frac{5}{\\pi})}', [0,0,0], color=0, size=1.5, reference_point='rb') plot.display() # In[ ]: