#!/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 += k3d.text('', (-1,0,0.5), color=0, is_html=True) plot.display() # In[ ]: plot.objects[0].label_box = False # In[ ]: