I'm using Twenty Seconds Resume template in overleaf https://www.overleaf.com/latex/templates/twenty-seconds-resume-slash-cv/mhyfwrmwjkbc
But I met a problem and I can't solve it after trying for long time.
I wanted to make it support Chinese so I added below in twentysecondcv.cls and changed complier to xeLatex
\RequirePackage{xeCJK}
\setCJKmainfont{AR PL KaitiM Big5}
This setting made me successfully seeing Maderin in the compiled file.
But then, I want to using Arial in English(the default setting for xeLatex seems to be Times or something similar)
So I modified to this
\RequirePackage{xeCJK}
\setmainfont{Arial}
\setCJKmainfont{AR PL KaitiM Big5}
But there is no any changes. I tried to using my own font file like
\RequirePackage{xeCJK}
\setmainfont{[myarial.ttf]}
\setCJKmainfont{AR PL KaitiM Big5}
Still not working.
Anyone with similar experiences can help me? Thanks in advance.