I want to display TeX-like expressions on a pyqt table widget. All the answers I came up with tell that I need to create a new widget to show those expressions correctly, but I want to know if it's possible to include them inside a cell of a table widget on pyqt5.
Here's a picture of what I want to accomplish:
So basically i want to display self.General_Table.item(0, 0).setText('m^2')
as a TeX-like expression.
Thanks in advance!