سلام
کافیست گزینهی
\includegraphics[width=xcm,height=xcm]{تصویر}
رو به کار ببرید. کد زیر زیر رو ببینید:
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[labelsep=period,hang]{caption}
\begin{document}
\begin{figure}[h!]
\centering
\includegraphics[width=5cm,height=5cm]{Fig0}
\caption{{\small (u) The estimate solution\ (v) Approximate solution with Caputo-Fabrizio derivative (w) Approximate solution with Caputo derivative.} } \label{fig:2}
\end{figure}
\end{document}
یک روش دیگر استفاده از ضریب مقیاس برای تغییر اندازهی شکل است که به صورت زیر میتوان آن را انجام داد:
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[labelsep=period,hang]{caption}
\begin{document}
\begin{figure}[h!]
\centering
\includegraphics[scale=1.5]{Fig0}
\caption{{\small (u) The estimate solution\ (v) Approximate solution with Caputo-Fabrizio derivative (w) Approximate solution with Caputo derivative.} } \label{fig:2}
\end{figure}
\end{document}
در اینجا با تغییر دادن مقدار scale=1.5
میتوان اندازهی شکل رو تغییر داد.
پیروز باشید.