How to write a character sequence for parallel symbol?
이전 댓글 표시
We use \perp to insert a perpendicular symbol "⊥" but I haven't found a charater sequence for the symbol parallel. How can we write its charater sequence?
채택된 답변
추가 답변 (2개)
\parallel
MATLAB uses the latex symbols. If it doesn't work, you may go for '||' this right?
Walter Roberson
2021년 7월 16일
편집: Walter Roberson
2021년 7월 16일
abc||def 

abc\|def 

abc{\parellel}def 
xlabel('$abc||def$', 'interpreter', 'latex')
ylabel('$abc\|def$', 'interpreter', 'latex')
title('$abc{\parallel}def', 'interpreter', 'latex')
So abc||def and abc\|def are supported for drawing, but not \parallel
카테고리
도움말 센터 및 File Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
