Jupyter notebook Latex cannot get widebar to work

In Jupyter Notebook, how can I get a bar (representing variable mean) to span the full string in braces?

Python 3.7, if that matters

$\bar{T_V(C)}$ returns a tiny bar: enter image description here

$\widebar{T_V(C)}$ doesn't seem to work:

enter image description here

1 Answer

You can use \overline.

$\overline{T_V(C)}$ 

enter image description here

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like