How do I create a LaTeX table In a MATLAB text box?
조회 수: 11 (최근 30일)
이전 댓글 표시
I would like to create a LaTeX table In a MATLAB text box.
채택된 답변
MathWorks Support Team
2009년 6월 27일
A LaTeX table can be used in a MATLAB text box. The following example illustrates how to do that:
cs = '\begin{tabular}{lll} Chicago&U.S.A.&1893\\ Z\"{u}rich&Switzerland&1897\\ Paris&France&1900\\ Heidelberg&Germany&1904\\ Rome&Italy&1908 \end{tabular}';
figure;
ha = annotation('textbox',[0.5 0.5 0.4 0.2], 'Interpreter', 'latex');
set(ha, 'String', cs);
Follow the URLs below for more details on 'Annotation Textbox Properties' and LaTeX interpreter:
<http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/ref/annotationtextboxproperties.html>
<http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/ref/text_props.html>
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Language Support에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!