Importing MATLAB Figures into Latex
古いコメントを表示
I have a Matlab figure and I want to import it to latex. My code is
>> plot3(Pa,Pb,Profit,'x') >> print -deps graph1
Then I copy and paste the eps file to my latex file and use this code.
\begin{figure}
\centering
\includegraphics{graph1}
\caption{}
\end{figure}
Error: Unknown graphics extension.
Does anyone know how to import Matlab figures into Latex?
Thanks
2 件のコメント
marcflight
2015 年 9 月 21 日
Did you add \usepackage{graphicx} in the preamble ? Did you move the graph1 image to your LaTeX directory?
Sanket Bhagat
2017 年 10 月 11 日
still same problem sir?? what to do?
採用された回答
その他の回答 (2 件)
Chad Greene
2015 年 1 月 18 日
1 投票
Instead of print I tend to use export_fig to export a very nice looking pdf. \includgraphics handles pdfs well.
3 件のコメント
Yellow Canary
2015 年 1 月 19 日
Yellow Canary
2015 年 1 月 19 日
Chad Greene
2015 年 1 月 19 日
I am guessing you put export_fig somewhere that Matlab can't find it. And pdfs in LaTeX should be no problem with \usepackage{graphicx} in the header.
Youssef Khmou
2015 年 1 月 19 日
Besides the explained proposition above, try to specify the extension in the source File :
\usepackage{graphicx}
\usepackage{epstopdf}
% other Tex instructions {Document ....}
\begin{figure}
\centering
\includegraphics{graph1.eps}
\caption{....}
\end{figure}
1 件のコメント
Muhammad Salman Bashir
2019 年 12 月 5 日
but my graph shape is black i want it in colours these graph..is this possible with these graphs????
カテゴリ
ヘルプ センター および File Exchange で Printing and Saving についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!