how to use partial derivative in fraction form in latex intepreter
19 ビュー (過去 30 日間)
古いコメントを表示
Turbulence Analysis
2021 年 2 月 9 日
編集済み: Sulaymon Eshkabilov
2023 年 2 月 2 日
Hi,
I intend to use ∂u/ ∂x in colorbar, could someone help me on how to represent this is in latex interpreter ???
c.Title.String='$\partial_{u} $'/'$\partial_{x} $';
2 件のコメント
採用された回答
Star Strider
2021 年 2 月 9 日
Try this:
figure
text(0.5, 0.5, '$ \frac{\partial_{u}}{\partial_{x}} $', 'Interpreter','latex', 'FontSize',25)
0 件のコメント
その他の回答 (1 件)
Sulaymon Eshkabilov
2023 年 2 月 2 日
編集済み: Sulaymon Eshkabilov
2023 年 2 月 2 日
Here is one simple example on how to use latex to display partial derivatives, e.g:
fplot(@(t)exp(sin(2*t)), [-pi, pi])
title('Plot of: $\frac{\partial_{F}}{\partial_{x}}+\frac{\partial_{F}}{\partial_{y}}$', ...
'Interpreter','latex', 'fontsize', 15)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Labels and Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!