我在Matlab中制作饼图,我将其导入到我的LaTeX报告中。自动将饼图保存为我有LaTeX显示和缩小的eps文件。文字太小了。
我一直试图让文字更大和/或使馅饼相对更小。对于我的报告,饼图的默认大小太大,因此我将其缩小了25%。
在Matlab中,我需要将馅饼缩小25%或将文字缩小400%。
Matlab的:
figure(1)
h = pie([100 10]);
hstr = {'Yes : ';'No : '}; % strings
title('Question one')
hText = findobj(h,'Type','text'); % text object handles
hPatch = findobj(h,'Type','patch'); % text object handles
hpercentValues = get(hText,'String'); % percent values
hcombinedstrings = strcat(hstr,hpercentValues); % strings and percent values
hText(1).String = hcombinedstrings(1);
hText(2).String = hcombinedstrings(2);
set(hPatch(1), 'FaceColor', 'r');
set(hPatch(2), 'FaceColor', 'g');
print -depsc Sp1.eps
我已经尝试了
hFig = figure(1);
set(hFig, 'Position', [0 0 200 200])
使数字变小和
set(gca,'FontSize',48)
使字体变大
乳胶
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\usepackage{epstopdf}
\begin{document}
\begin{figure}
\centering
\includegraphics[scale=0.25]{Figures/Sp1}
\label{fig:Sp1}
\end{figure}
\end{document}