// https://asymptote.sourceforge.io/gallery/CDlabel.asy
//settings.tex="pdflatex";
size(10cm);
usepackage("graphicx");
import labelpath;
fill(unitcircle^^(scale(0.15)*unitcircle),evenodd+rgb(0.5,1,0.83));
label(minipage(
"\centering\scriptsize
\textbf{
\LARGE {\tt Your Title}\\
\smallskip
\small The authors}\\
\smallskip
\today\\
",6cm),(0,0.5));
label("Your Texts",(-0.6,0));
label("Your Texts",(0.6,0));
//https://en.wikipedia.org/wiki/LaTeX#/media/File:LaTeX_project_logo_bird.svg
// label(graphic("logo.svg","height=2cm"),(0,-0.5));
labelpath("\textbf{ \large MACROPODS - Their Care, Breeding and the Rearing of Their Young\, by: David McCauley}",
reverse(arc((0,0),0.88,-80,260)));
// https://asymptote.sourceforge.io/gallery/CDlabel.asy
settings.tex="pdflatex";
size(10cm);
usepackage("graphicx");
import labelpath;
fill(unitcircle^^(scale(0.15)*unitcircle),evenodd+rgb(0.5,1,0.83));
label(minipage(
"\centering\scriptsize
\textbf{
\LARGE {\tt Your Title}\\
\smallskip
\small The authors}\\
\smallskip
\today\\
",6cm),(0,0.5));
label("Your Texts",(-0.6,0));
label("Your Texts",(0.6,0));
//https://en.wikipedia.org/wiki/LaTeX#/media/File:LaTeX_project_logo_bird.svg
label(graphic("logo.svg","height=2cm"),(0,-0.5));
Question:
How can I connect image and labelpath ?



label(graphic("logo.svg","height=2cm"),(0,-0.5));andlabelpath("\textbf{ \large MACROPODS - Their Care, Breeding and the Rearing of Their Young\, by: David McCauley}", reverse(arc((0,0),0.88,-80,260)));) can run together. Actually, I have a problem withsettings.tex="pdflatex";andsettings.tex="latex";. – Sep 02 '20 at 17:35settings.tex = "xelatex";. I don't know if this will work, but it might. Otherwise, convert your logo fromsvgtoepsand usesettings.tex = "latex";. – Charles Staats Sep 03 '20 at 13:30settings.tex = "xelatex";does not work. – Sep 03 '20 at 13:55