The official picture.
This is my code.
\documentclass[pstricks,border=10pt]{standalone}
\usepackage{pstricks-add,pst-node,pst-tools}
\usepackage{graphicx}
\begin{document}
\begin{pspicture}[showgrid](0,-7)(12,1)
\sffamily
\psRegisterList{Name}{M,A,T,H,E,M,A,T,I,C,S}
\psRegisterList{Color}{red!90,yellow!80,blue!70,green!60,cyan!50,pink}
%%%
\psRegisterList{lefttext}{Matrix theory,Algebra,Trigonometry,Hilbert space,Ergodicity,}
\psRegisterList{righttext}{Analysic,Topology,Integration,,Set theory}
%%%%
\multido{\iA=1+1}{11}{\rput(\iA,0){\psDefBoxNodes{Label\iA}{\color{black} \LARGE \Name{\iA}}}}
\multido{\iA=1+1,%
\rA=4+-0.5,
\rB=-5.5+.75,
\rC=0.5+-0.1,
\rD=2+-0.25}{6}{%
\psline[linewidth=\rA pt,
arrowscale=\rD,
linecolor=\Color{\iA}]{-*}(Label\iA:bC|0,-.3)(Label\iA:bC|0,\rB)
\uput{\rC}[-85](Label\iA:bC|0,\rB){\lefttext\iA}}
\uput{.55}[-90](Label6:bC|0,-1.25){\shortstack{Measure\\theory}}
%%%%%%%%%%%%%
\multido{\iA=11+-1,\iB=5+-1,\iC=1+1,%
\rA=4+-0.5,
\rB=-5.5+0.75,
\rC=0.5+-0.1,
\rD=2+-0.25}{5}{%
\psline[linewidth=\rA pt,
arrowscale=\rD,
linecolor=\Color{\iC}]{-*}(Label\iA:bC|0,-.3)(Label\iA:bC|0,\rB)
\uput{\rC}[-85](Label\iA:bC|0,\rB){\righttext\iB}}
\uput{.4}[-90](Label10:bC|0,-4.75){\shortstack{Complex\\number}}
\end{pspicture}
\end{document}
The output
Question:
How to insert an image(any formats) as background? It mean that with any images, it will be clipped or reduce the size of image until it is true (example: it look like frame (0,-7)(12,1))
I have seen this link Drawing on an image with TikZ but I can't use that syntaxs.
Note: You can reproduce my code if you want to say several new things!
Done!
\documentclass[border=10pt]{standalone}
\usepackage{pst-node,pst-tools,pst-fun}
\usepackage{graphicx}
\begin{document}
\begin{pspicture}(0,-7)(12,1)
\rput[lb](0,-7){\includegraphics[width=12cm,height=8cm]{anht.jpg}}
\sffamily
\psRegisterList{Name}{M,A,T,H,E,M,A,T,I,C,S}
\psRegisterList{Color}{red!90,yellow!80,blue!70,green,orange,pink}
%%%
\psRegisterList{lefttext}{Matrix theory,Algebra,Trigonometry,Hilbert space,Ergodicity,}
\psRegisterList{righttext}{Analysic,Topology,Integration,,Set theory}
%%%%
\multido{\iA=1+1}{11}{\rput(\iA,0){\psDefBoxNodes{Label\iA}{\color{white} \LARGE \Name{\iA}}}}
\multido{\iA=1+1,%
\rA=4+-0.5,
\rB=-5.5+.75,
\rC=0.5+-0.1,
\rD=2+-0.25}{6}{%
\psline[linewidth=\rA pt,
arrowscale=\rD,
linecolor=\Color{\iA}]{-*}(Label\iA:bC|0,-.3)(Label\iA:bC|0,\rB)
\uput{\rC}[-85](Label\iA:bC|0,\rB){\color{\Color{\iA}}\lefttext\iA}}
\uput{.55}[-90](Label6:bC|0,-1.25){\color{\Color{3}}\shortstack{Measure\\theory}}
%%%%%%%%%%%%%
\multido{\iA=11+-1,\iB=5+-1,\iC=1+1,%
\rA=4+-0.5,
\rB=-5.5+0.75,
\rC=0.5+-0.1,
\rD=2+-0.25}{5}{%
\psline[linewidth=\rA pt,
arrowscale=\rD,
linecolor=\Color{\iC}]{-*}(Label\iA:bC|0,-.3)(Label\iA:bC|0,\rB)
\uput{\rC}[-85](Label\iA:bC|0,\rB){\color{\Color{\iC}}\righttext\iB}}
\uput{.4}[-90](Label10:bC|0,-4.75){\color{\Color{2}}\shortstack{Complex\\number}}
\end{pspicture}
\end{document}
Image is in this link
My code is compiled with xelatex very slow!






Cannot determine size of graphic in Capture.png (no BoundingBox)for anyformats(such as png, jpg,...) – Oct 07 '19 at 07:40latex->dvips->ps2pdf.(as I normal compile my PSTricks code) – Oct 07 '19 at 08:11Capture.png. Convert it to an eps or usexelatex– user187802 Oct 07 '19 at 08:22png,jpg or pdfcan not be used together with this code? – Oct 07 '19 at 08:24xelatexas I already wrote! – user187802 Oct 07 '19 at 08:31very very slow! Thanks. – Oct 07 '19 at 08:38Measure\\theory or Complex\\numberin\psRegisterList,why? (latex->dvips->ps2pdf) – Oct 07 '19 at 08:58\ifthenelse?? – user187802 Oct 07 '19 at 17:29\ifthenelse, can you registerMeasure\\theoryorComplex\\numberin\psRegisterListnormally? – Oct 08 '19 at 16:27