diff --git a/CJKFontSettingsGen.cpp b/CJKFontSettingsGen.cpp index a231960..ed3729c 100644 --- a/CJKFontSettingsGen.cpp +++ b/CJKFontSettingsGen.cpp @@ -9,7 +9,7 @@ Latex() {} const string cmain = "\\setCJKmainfont"; const string csans = "\\setCJKsansfont"; const string cmono = "\\setCJKmonofont"; -const string nff = "\\newfontfamily\\customfont"; +const string nff = "\\newfontfamily\\"; const string path = "Path=/usr/share/fonts/noto-cjk/,"; const string sansf = "NotoSans"; const string seriff = "NotoSerif"; @@ -48,114 +48,113 @@ string mono(string lang){ return ret; } string ssans(string lang){ - string ret="{Sans"+lang+cp+path; + string ret="Sans"+lang+"{"+sansf+lang+cp+path; for (int i=0; i<5; i++) ret+=fw[i]+"="+sansf+lang+"-"+sansw[i]+otf+","; ret+=end; return ret; } string sserif(string lang){ - string ret="{Serif"+lang+cp+path; + string ret="Serif"+lang+"{"+seriff+lang+cp+path; for (int i=0; i<5; i++) ret+=fw[i]+"="+seriff+lang+"-"+serifw[i]+otf+","; ret+=end; return ret; } string lsans(string lang){ - string ret="{"+lang+cp+path; + string ret=lang+"{"+sansf+lang+cp+path; for (int i=0; i<5; i++) ret+=fw[i]+"="+sansf+lang+"-"+sansw[i]+otf+","; ret+=end; return ret; } string lserif(string lang){ - string ret="{"+lang+cp+path; + string ret=lang+"{"+seriff+lang+cp+path; for (int i=0; i<5; i++) ret+=fw[i]+"="+seriff+lang+"-"+serifw[i]+otf+","; ret+=end; return ret; } -string smono(string llang){ - string ret="{Mono"+llang+cp+path; - string lang = llang; +string smono(string ulang){ + string lang = ulang; transform(lang.begin(), lang.end(), lang.begin(), [](unsigned char c) { return tolower(c); }); + string ret="Mono"+ulang+"{"+monof+lang+cp+path; for (int i=0; i<2; i++) ret+=monofwn[i]+"="+monof+lang+"-"+monow[i]+otf+","; ret+=end; return ret; } void yes() { - Latex latex=Latex(); cout << pre; for (int i=0; i<5; i++) { - cout << cl+to_string(i+1)+"\n"; + cout << cl+to_string(i)+"\n"; cout << cf+"1"+"\n"; - cout << cmain << latex.sans(ulang[i]); - cout << csans << latex.serif(ulang[i]); - cout << cmono << latex.mono(llang[i]); + cout << cmain << sans(ulang[i]); + cout << csans << serif(ulang[i]); + cout << cmono << mono(llang[i]); cout << "\n\\else"; cout << cf+"2"+"\n"; - cout << cmain << latex.serif(ulang[i]); - cout << csans << latex.sans(ulang[i]); - cout << cmono << latex.mono(llang[i]); + cout << cmain << serif(ulang[i]); + cout << csans << sans(ulang[i]); + cout << cmono << mono(llang[i]); cout << "\n\\else"; cout << cf+"3"+"\n"; - cout << cmain << latex.sans(ulang[i]); - cout << cmono << latex.mono(llang[i]); + cout << cmain << sans(ulang[i]); + cout << cmono << mono(llang[i]); cout << "\n\\else"; cout << cf+"4"+"\n"; - cout << cmain << latex.serif(ulang[i]); - cout << cmono << latex.mono(llang[i]); + cout << cmain << serif(ulang[i]); + cout << cmono << mono(llang[i]); cout << "\n\\else"; cout << cf+"5"+"\n"; - cout << cmain << latex.sans(ulang[i]); - cout << csans << latex.serif(ulang[i]); + cout << cmain << sans(ulang[i]); + cout << csans << serif(ulang[i]); cout << "\n\\else"; cout << cf+"6"+"\n"; - cout << cmain << latex.serif(ulang[i]); - cout << csans << latex.sans(ulang[i]); + cout << cmain << serif(ulang[i]); + cout << csans << sans(ulang[i]); cout << "\n\\else"; cout << cf+"7"+"\n"; - cout << cmain << latex.sans(ulang[i]); + cout << cmain << sans(ulang[i]); cout << "\n\\else"; cout << cf+"8"+"\n"; - cout << cmain << latex.serif(ulang[i]); + cout << cmain << serif(ulang[i]); cout << "\n\\fi\\fi\\fi\\fi\\fi\\fi\\fi\\fi"; if (i!=4) cout << "\\else\n"; } cout << "\n\\fi\\fi\\fi\\fi\\fi\\fi\n"; cout << cn << "0\n"; - cout << "\\else" << cn << "1\n"; + cout << "\\else" << cn << "1"; for (int i=0; i<5; i++) { - cout << "\n" << nff << latex.ssans(ulang[i]); - cout << "\n" << nff << latex.lsans(ulang[i]); - cout << "\n" << nff << latex.sserif(ulang[i]); - cout << "\n" << nff << latex.smono(ulang[i]); + cout << "\n" << nff << ssans(ulang[i]); + cout << "\n" << nff << lsans(ulang[i]); + cout << "\n" << nff << sserif(ulang[i]); + cout << "\n" << nff << smono(ulang[i]); } - cout << "\\else" << cn << "2\n"; + cout << "\\else" << cn << "2"; for (int i=0; i<5; i++) { - cout << "\n" << nff << latex.ssans(ulang[i]); - cout << "\n" << nff << latex.sserif(ulang[i]); - cout << "\n" << nff << latex.lserif(ulang[i]); - cout << "\n" << nff << latex.smono(ulang[i]); + cout << "\n" << nff << ssans(ulang[i]); + cout << "\n" << nff << sserif(ulang[i]); + cout << "\n" << nff << lserif(ulang[i]); + cout << "\n" << nff << smono(ulang[i]); } - cout << "\\else" << cn << "3\n"; + cout << "\\else" << cn << "3"; for (int i=0; i<5; i++) { - cout << "\n" << nff << latex.ssans(ulang[i]); - cout << "\n" << nff << latex.sserif(ulang[i]); - cout << "\n" << nff << latex.smono(ulang[i]); + cout << "\n" << nff << ssans(ulang[i]); + cout << "\n" << nff << sserif(ulang[i]); + cout << "\n" << nff << smono(ulang[i]); } - cout << "\\else" << cn << "4\n"; + cout << "\\else" << cn << "4"; for (int i=0; i<5; i++) { - cout << "\n" << nff << latex.ssans(ulang[i]); - cout << "\n" << nff << latex.lsans(ulang[i]); - cout << "\n" << nff << latex.sserif(ulang[i]); + cout << "\n" << nff << ssans(ulang[i]); + cout << "\n" << nff << lsans(ulang[i]); + cout << "\n" << nff << sserif(ulang[i]); } - cout << "\\else" << cn << "5\n"; + cout << "\\else" << cn << "5"; for (int i=0; i<5; i++) { - cout << "\n" << nff << latex.ssans(ulang[i]); - cout << "\n" << nff << latex.sserif(ulang[i]); - cout << "\n" << nff << latex.lserif(ulang[i]); + cout << "\n" << nff << ssans(ulang[i]); + cout << "\n" << nff << sserif(ulang[i]); + cout << "\n" << nff << lserif(ulang[i]); } - cout << "\\else" << cn << "6\n"; + cout << "\\else" << cn << "6"; for (int i=0; i<5; i++) { - cout << "\n" << nff << latex.ssans(ulang[i]); - cout << "\n" << nff << latex.sserif(ulang[i]); + cout << "\n" << nff << ssans(ulang[i]); + cout << "\n" << nff << sserif(ulang[i]); } cout << "\n\\fi\\fi\\fi\\fi\\fi\\fi\\fi\\fi"; } diff --git a/README.md b/README.md index 058e91c..54e50af 100644 --- a/README.md +++ b/README.md @@ -16,35 +16,35 @@ curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/TC curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/TC/NotoSansTC-Regular.otf --output /usr/share/fonts/noto-cjk/NotoSansTC-Regular.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/TC/NotoSansTC-Medium.otf --output /usr/share/fonts/noto-cjk/NotoSansTC-Medium.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/TC/NotoSansTC-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansTC-Light.otf -curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/TC/NotoSansTC-DemiLight.otf --output /usr/share/fonts/noto-cjk/NotoSansTC-DemiLight.otf +curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/TC/NotoSansTC-Demi-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansTC-Demi-Light.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/TC/NotoSansTC-Bold.otf --output /usr/share/fonts/noto-cjk/NotoSansTC-Bold.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/TC/NotoSansTC-Black.otf --output /usr/share/fonts/noto-cjk/NotoSansTC-Black.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/SC/NotoSansSC-Thin.otf --output /usr/share/fonts/noto-cjk/NotoSansSC-Thin.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/SC/NotoSansSC-Regular.otf --output /usr/share/fonts/noto-cjk/NotoSansSC-Regular.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/SC/NotoSansSC-Medium.otf --output /usr/share/fonts/noto-cjk/NotoSansSC-Medium.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/SC/NotoSansSC-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansSC-Light.otf -curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/SC/NotoSansSC-DemiLight.otf --output /usr/share/fonts/noto-cjk/NotoSansSC-DemiLight.otf +curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/SC/NotoSansSC-Demi-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansSC-Demi-Light.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/SC/NotoSansSC-Bold.otf --output /usr/share/fonts/noto-cjk/NotoSansSC-Bold.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/SC/NotoSansSC-Black.otf --output /usr/share/fonts/noto-cjk/NotoSansSC-Black.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/HK/NotoSansHK-Thin.otf --output /usr/share/fonts/noto-cjk/NotoSansHK-Thin.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/HK/NotoSansHK-Regular.otf --output /usr/share/fonts/noto-cjk/NotoSansHK-Regular.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/HK/NotoSansHK-Medium.otf --output /usr/share/fonts/noto-cjk/NotoSansHK-Medium.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/HK/NotoSansHK-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansHK-Light.otf -curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/HK/NotoSansHK-DemiLight.otf --output /usr/share/fonts/noto-cjk/NotoSansHK-DemiLight.otf +curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/HK/NotoSansHK-Demi-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansHK-Demi-Light.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/HK/NotoSansHK-Bold.otf --output /usr/share/fonts/noto-cjk/NotoSansHK-Bold.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/HK/NotoSansHK-Black.otf --output /usr/share/fonts/noto-cjk/NotoSansHK-Black.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/JP/NotoSansJP-Thin.otf --output /usr/share/fonts/noto-cjk/NotoSansJP-Thin.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/JP/NotoSansJP-Regular.otf --output /usr/share/fonts/noto-cjk/NotoSansJP-Regular.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/JP/NotoSansJP-Medium.otf --output /usr/share/fonts/noto-cjk/NotoSansJP-Medium.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/JP/NotoSansJP-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansJP-Light.otf -curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/JP/NotoSansJP-DemiLight.otf --output /usr/share/fonts/noto-cjk/NotoSansJP-DemiLight.otf +curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/JP/NotoSansJP-Demi-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansJP-Demi-Light.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/JP/NotoSansJP-Bold.otf --output /usr/share/fonts/noto-cjk/NotoSansJP-Bold.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/JP/NotoSansJP-Black.otf --output /usr/share/fonts/noto-cjk/NotoSansJP-Black.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/KR/NotoSansKR-Thin.otf --output /usr/share/fonts/noto-cjk/NotoSansKR-Thin.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/KR/NotoSansKR-Regular.otf --output /usr/share/fonts/noto-cjk/NotoSansKR-Regular.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/KR/NotoSansKR-Medium.otf --output /usr/share/fonts/noto-cjk/NotoSansKR-Medium.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/KR/NotoSansKR-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansKR-Light.otf -curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/KR/NotoSansKR-DemiLight.otf --output /usr/share/fonts/noto-cjk/NotoSansKR-DemiLight.otf +curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/KR/NotoSansKR-Demi-Light.otf --output /usr/share/fonts/noto-cjk/NotoSansKR-Demi-Light.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/KR/NotoSansKR-Bold.otf --output /usr/share/fonts/noto-cjk/NotoSansKR-Bold.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Sans/SubsetOTF/KR/NotoSansKR-Black.otf --output /usr/share/fonts/noto-cjk/NotoSansKR-Black.otf curl https://raw.githubusercontent.com/notofonts/noto-cjk/main/Serif/SubsetOTF/TC/NotoSerifTC-ExtraLight.otf --output /usr/share/fonts/noto-cjk/NotoSerifTC-ExtraLight.otf @@ -101,7 +101,7 @@ Replace `\input{template.tex}` line in [document.tex](document.tex) with the act ## CJKFontSettingsGen.cpp -[`CJKFontSettingsGen.cpp`](CJKFontSettingsGen.cpp) is a cpp program to generate the CJK font settings etc. LaTeX code, which is the 40 to 243 line of [`template.tex`](template.tex). +[`CJKFontSettingsGen.cpp`](CJKFontSettingsGen.cpp) is a cpp program to generate the CJK font settings etc. LaTeX code, which is the 40 to 213 line of [`template.tex`](template.tex). ## License diff --git a/document.tex b/document.tex index 6b8fede..0162dac 100644 --- a/document.tex +++ b/document.tex @@ -31,5 +31,10 @@ % Set ZhRenew counter to 1 to renew TOC's title to 目錄; 2 to renew TOC's title to 目录; 0 to not renew them. If xeCJK counter is not 1, this counter will be omitted. \input{template.tex} \begin{document} +% --- Example --- % +% \title{Title} +% \author{Willie169} +% \date{\temtoday} +% \titletocdoc % --- Your document goes here --- % \end{document} \ No newline at end of file diff --git a/template.tex b/template.tex index 59fb5bc..b0c1b35 100644 --- a/template.tex +++ b/template.tex @@ -46,7 +46,7 @@ \renewcommand{\contentsname}{\hfill\text{目录}\hfill} \fi\fi \ifnum\value{CJKFonts}=0\else -\ifnum\value{CJKLanguage}=1 +\ifnum\value{CJKLanguage}=0 \ifnum\value{CJKFonts}=1 \setCJKmainfont{NotoSansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX]\setCJKsansfont{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX]\setCJKmonofont{NotoSansMonoCJKtc}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKtc-Regular.otf,BoldFont=NotoSansMonoCJKtc-Bold.otf,Ligatures=TeX] \else\ifnum\value{CJKFonts}=2 @@ -64,7 +64,7 @@ \else\ifnum\value{CJKFonts}=8 \setCJKmainfont{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] \fi\fi\fi\fi\fi\fi\fi\fi\else -\ifnum\value{CJKLanguage}=2 +\ifnum\value{CJKLanguage}=1 \ifnum\value{CJKFonts}=1 \setCJKmainfont{NotoSansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX]\setCJKsansfont{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX]\setCJKmonofont{NotoSansMonoCJKsc}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKsc-Regular.otf,BoldFont=NotoSansMonoCJKsc-Bold.otf,Ligatures=TeX] \else\ifnum\value{CJKFonts}=2 @@ -82,7 +82,7 @@ \else\ifnum\value{CJKFonts}=8 \setCJKmainfont{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] \fi\fi\fi\fi\fi\fi\fi\fi\else -\ifnum\value{CJKLanguage}=3 +\ifnum\value{CJKLanguage}=2 \ifnum\value{CJKFonts}=1 \setCJKmainfont{NotoSansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX]\setCJKsansfont{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX]\setCJKmonofont{NotoSansMonoCJKhk}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKhk-Regular.otf,BoldFont=NotoSansMonoCJKhk-Bold.otf,Ligatures=TeX] \else\ifnum\value{CJKFonts}=2 @@ -100,7 +100,7 @@ \else\ifnum\value{CJKFonts}=8 \setCJKmainfont{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] \fi\fi\fi\fi\fi\fi\fi\fi\else -\ifnum\value{CJKLanguage}=4 +\ifnum\value{CJKLanguage}=3 \ifnum\value{CJKFonts}=1 \setCJKmainfont{NotoSansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX]\setCJKsansfont{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX]\setCJKmonofont{NotoSansMonoCJKjp}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKjp-Regular.otf,BoldFont=NotoSansMonoCJKjp-Bold.otf,Ligatures=TeX] \else\ifnum\value{CJKFonts}=2 @@ -118,7 +118,7 @@ \else\ifnum\value{CJKFonts}=8 \setCJKmainfont{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] \fi\fi\fi\fi\fi\fi\fi\fi\else -\ifnum\value{CJKLanguage}=5 +\ifnum\value{CJKLanguage}=4 \ifnum\value{CJKFonts}=1 \setCJKmainfont{NotoSansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX]\setCJKsansfont{NotoSerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX]\setCJKmonofont{NotoSansMonoCJKkr}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKkr-Regular.otf,BoldFont=NotoSansMonoCJKkr-Bold.otf,Ligatures=TeX] \else\ifnum\value{CJKFonts}=2 @@ -139,107 +139,71 @@ \fi\fi\fi\fi\fi\fi \ifnum\value{NotoCJKFamily}=0 \else\ifnum\value{NotoCJKFamily}=1 - -\newfontfamily\customfont{SansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{TC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKtc-Regular.otf,BoldFont=NotoSansMonoCJKtc-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKsc-Regular.otf,BoldFont=NotoSansMonoCJKsc-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{HK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKhk-Regular.otf,BoldFont=NotoSansMonoCJKhk-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{JP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKjp-Regular.otf,BoldFont=NotoSansMonoCJKjp-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{KR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKkr-Regular.otf,BoldFont=NotoSansMonoCJKkr-Bold.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=2 - -\newfontfamily\customfont{SansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{TC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKtc-Regular.otf,BoldFont=NotoSansMonoCJKtc-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKsc-Regular.otf,BoldFont=NotoSansMonoCJKsc-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{HK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKhk-Regular.otf,BoldFont=NotoSansMonoCJKhk-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{JP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKjp-Regular.otf,BoldFont=NotoSansMonoCJKjp-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{KR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKkr-Regular.otf,BoldFont=NotoSansMonoCJKkr-Bold.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=3 - -\newfontfamily\customfont{SansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKtc-Regular.otf,BoldFont=NotoSansMonoCJKtc-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKsc-Regular.otf,BoldFont=NotoSansMonoCJKsc-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKhk-Regular.otf,BoldFont=NotoSansMonoCJKhk-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKjp-Regular.otf,BoldFont=NotoSansMonoCJKjp-Bold.otf,Ligatures=TeX] -\newfontfamily\customfont{SansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{MonoKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKkr-Regular.otf,BoldFont=NotoSansMonoCJKkr-Bold.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=4 - -\newfontfamily\customfont{SansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{TC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{HK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{JP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{KR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=5 - -\newfontfamily\customfont{SansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{TC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{HK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{JP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{KR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=6 - -\newfontfamily\customfont{SansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] -\newfontfamily\customfont{SansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] -\newfontfamily\customfont{SerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] +\newfontfamily\SansTC{NotoSansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX]\newfontfamily\TC{NotoSansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifTC{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] +\newfontfamily\MonoTC{NotoSansMonoCJKtc}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKtc-Regular.otf,BoldFont=NotoSansMonoCJKtc-Bold.otf,Ligatures=TeX] +\newfontfamily\SansSC{NotoSansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SC{NotoSansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifSC{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] +\newfontfamily\MonoSC{NotoSansMonoCJKsc}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKsc-Regular.otf,BoldFont=NotoSansMonoCJKsc-Bold.otf,Ligatures=TeX] +\newfontfamily\SansHK{NotoSansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX]\newfontfamily\HK{NotoSansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifHK{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] +\newfontfamily\MonoHK{NotoSansMonoCJKhk}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKhk-Regular.otf,BoldFont=NotoSansMonoCJKhk-Bold.otf,Ligatures=TeX] +\newfontfamily\SansJP{NotoSansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX]\newfontfamily\JP{NotoSansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifJP{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] +\newfontfamily\MonoJP{NotoSansMonoCJKjp}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKjp-Regular.otf,BoldFont=NotoSansMonoCJKjp-Bold.otf,Ligatures=TeX] +\newfontfamily\SansKR{NotoSansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX]\newfontfamily\KR{NotoSansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifKR{NotoSerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] +\newfontfamily\MonoKR{NotoSansMonoCJKkr}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKkr-Regular.otf,BoldFont=NotoSansMonoCJKkr-Bold.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=2 +\newfontfamily\SansTC{NotoSansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifTC{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] +\newfontfamily\TC{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] +\newfontfamily\MonoTC{NotoSansMonoCJKtc}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKtc-Regular.otf,BoldFont=NotoSansMonoCJKtc-Bold.otf,Ligatures=TeX] +\newfontfamily\SansSC{NotoSansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifSC{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] +\newfontfamily\SC{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] +\newfontfamily\MonoSC{NotoSansMonoCJKsc}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKsc-Regular.otf,BoldFont=NotoSansMonoCJKsc-Bold.otf,Ligatures=TeX] +\newfontfamily\SansHK{NotoSansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifHK{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] +\newfontfamily\HK{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] +\newfontfamily\MonoHK{NotoSansMonoCJKhk}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKhk-Regular.otf,BoldFont=NotoSansMonoCJKhk-Bold.otf,Ligatures=TeX] +\newfontfamily\SansJP{NotoSansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifJP{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] +\newfontfamily\JP{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] +\newfontfamily\MonoJP{NotoSansMonoCJKjp}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKjp-Regular.otf,BoldFont=NotoSansMonoCJKjp-Bold.otf,Ligatures=TeX] +\newfontfamily\SansKR{NotoSansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifKR{NotoSerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] +\newfontfamily\KR{NotoSerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] +\newfontfamily\MonoKR{NotoSansMonoCJKkr}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKkr-Regular.otf,BoldFont=NotoSansMonoCJKkr-Bold.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=3 +\newfontfamily\SansTC{NotoSansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifTC{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] +\newfontfamily\MonoTC{NotoSansMonoCJKtc}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKtc-Regular.otf,BoldFont=NotoSansMonoCJKtc-Bold.otf,Ligatures=TeX] +\newfontfamily\SansSC{NotoSansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifSC{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] +\newfontfamily\MonoSC{NotoSansMonoCJKsc}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKsc-Regular.otf,BoldFont=NotoSansMonoCJKsc-Bold.otf,Ligatures=TeX] +\newfontfamily\SansHK{NotoSansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifHK{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] +\newfontfamily\MonoHK{NotoSansMonoCJKhk}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKhk-Regular.otf,BoldFont=NotoSansMonoCJKhk-Bold.otf,Ligatures=TeX] +\newfontfamily\SansJP{NotoSansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifJP{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] +\newfontfamily\MonoJP{NotoSansMonoCJKjp}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKjp-Regular.otf,BoldFont=NotoSansMonoCJKjp-Bold.otf,Ligatures=TeX] +\newfontfamily\SansKR{NotoSansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifKR{NotoSerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] +\newfontfamily\MonoKR{NotoSansMonoCJKkr}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansMonoCJKkr-Regular.otf,BoldFont=NotoSansMonoCJKkr-Bold.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=4 +\newfontfamily\SansTC{NotoSansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX]\newfontfamily\TC{NotoSansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifTC{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] +\newfontfamily\SansSC{NotoSansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SC{NotoSansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifSC{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] +\newfontfamily\SansHK{NotoSansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX]\newfontfamily\HK{NotoSansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifHK{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] +\newfontfamily\SansJP{NotoSansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX]\newfontfamily\JP{NotoSansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifJP{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] +\newfontfamily\SansKR{NotoSansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX]\newfontfamily\KR{NotoSansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX] +\newfontfamily\SerifKR{NotoSerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=5 +\newfontfamily\SansTC{NotoSansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifTC{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] +\newfontfamily\TC{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] +\newfontfamily\SansSC{NotoSansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifSC{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] +\newfontfamily\SC{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] +\newfontfamily\SansHK{NotoSansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifHK{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] +\newfontfamily\HK{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] +\newfontfamily\SansJP{NotoSansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifJP{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] +\newfontfamily\JP{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] +\newfontfamily\SansKR{NotoSansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifKR{NotoSerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] +\newfontfamily\KR{NotoSerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX]\else\ifnum\value{NotoCJKFamily}=6 +\newfontfamily\SansTC{NotoSansTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansTC-Regular.otf,ItalicFont=NotoSansTC-Medium.otf,BoldFont=NotoSansTC-Bold.otf,BoldItalicFont=NotoSansTC-Black.otf,SmallCapsFont=NotoSansTC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifTC{NotoSerifTC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifTC-Regular.otf,ItalicFont=NotoSerifTC-Medium.otf,BoldFont=NotoSerifTC-Bold.otf,BoldItalicFont=NotoSerifTC-Black.otf,SmallCapsFont=NotoSerifTC-Light.otf,Ligatures=TeX] +\newfontfamily\SansSC{NotoSansSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansSC-Regular.otf,ItalicFont=NotoSansSC-Medium.otf,BoldFont=NotoSansSC-Bold.otf,BoldItalicFont=NotoSansSC-Black.otf,SmallCapsFont=NotoSansSC-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifSC{NotoSerifSC}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifSC-Regular.otf,ItalicFont=NotoSerifSC-Medium.otf,BoldFont=NotoSerifSC-Bold.otf,BoldItalicFont=NotoSerifSC-Black.otf,SmallCapsFont=NotoSerifSC-Light.otf,Ligatures=TeX] +\newfontfamily\SansHK{NotoSansHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansHK-Regular.otf,ItalicFont=NotoSansHK-Medium.otf,BoldFont=NotoSansHK-Bold.otf,BoldItalicFont=NotoSansHK-Black.otf,SmallCapsFont=NotoSansHK-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifHK{NotoSerifHK}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifHK-Regular.otf,ItalicFont=NotoSerifHK-Medium.otf,BoldFont=NotoSerifHK-Bold.otf,BoldItalicFont=NotoSerifHK-Black.otf,SmallCapsFont=NotoSerifHK-Light.otf,Ligatures=TeX] +\newfontfamily\SansJP{NotoSansJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansJP-Regular.otf,ItalicFont=NotoSansJP-Medium.otf,BoldFont=NotoSansJP-Bold.otf,BoldItalicFont=NotoSansJP-Black.otf,SmallCapsFont=NotoSansJP-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifJP{NotoSerifJP}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifJP-Regular.otf,ItalicFont=NotoSerifJP-Medium.otf,BoldFont=NotoSerifJP-Bold.otf,BoldItalicFont=NotoSerifJP-Black.otf,SmallCapsFont=NotoSerifJP-Light.otf,Ligatures=TeX] +\newfontfamily\SansKR{NotoSansKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSansKR-Regular.otf,ItalicFont=NotoSansKR-Medium.otf,BoldFont=NotoSansKR-Bold.otf,BoldItalicFont=NotoSansKR-Black.otf,SmallCapsFont=NotoSansKR-DemiLight.otf,Ligatures=TeX]\newfontfamily\SerifKR{NotoSerifKR}[Path=/usr/share/fonts/noto-cjk/,UprightFont=NotoSerifKR-Regular.otf,ItalicFont=NotoSerifKR-Medium.otf,BoldFont=NotoSerifKR-Bold.otf,BoldItalicFont=NotoSerifKR-Black.otf,SmallCapsFont=NotoSerifKR-Light.otf,Ligatures=TeX] \fi\fi\fi\fi\fi\fi\fi\fi \usepackage{url,hyperref} \hypersetup{colorlinks=false}