This is how I do these things.
Rule of thumb, always use PDF files for images if possible. If not, export to .eps/ps, then convert the eps to PDF, then use that in the incluegraphics command in Latex. Latex compilers (pdflatex and lualatex, etc...) can read pdf image file for many years now.
I do not use the Maple worksheet GUI to export anything, as I do all this in code. Something like this
p:=plot(.....); #your plot command
plotsetup(ps, plotoutput="file_name_here",plotoptions = `noborder`);
print(p);
plotsetup(default):
The above will create file_name_here.ps. Choose any name you want for the file.
Now I run the commands
epspdf filename.ps
pdfcrop --margins 10 filename.pdf filename.pdf
The first command convert the .ps file to pdf. The second crops it.
I've been doing this for years in all my Latex. It works very well for me.
I just applied these to your image
with(plots):
scheme1 := ["zgradient",["Blue","Cyan","Green","Yellow","Orange","Red"]]:
P1:=plot3d(x*y, colorscheme=scheme1,style=surfacecontour ):
P2:=plot3d(x*y,colorscheme=scheme1,style=point,symbol=asterisk):
final_plot:=display({P1,P2}); #I want to export this figure to .eps
plotsetup(ps, plotoutput="file_name_here",plotoptions = `noborder`);
print(final_plot);
plotsetup(default):
Here is the result
\documentclass[11pt]{article}
\usepackage{graphicx}
\begin{document}
This is my graphics generated in Maple 2020.2
\includegraphics[width=0.9\textwidth]{file_name_here}
\end{document}
In Mathematica, this is much easier, since Mathematica Export command can export plots and other Graphics to PDF directly.
May be in Maple 2021 exporting to PDF using the export() command will be supported. I have no idea why Maple still does not support PDF format in the export command. PDF is the most universal format there is.
https://www.maplesoft.com/support/help/Maple/view.aspx?path=Export
foo5.pdf