Discussions
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
deal with the need for multilingual printing in PDF
we are using PDF template in Japanese. It was discovered that the current PDF template does not print Hangul characters "e.g. 주식".
<#elseif .locale == "ja_JP">
font-family: NotoSans, NotoSansCJKjp, sans-serif;
If we add "NotoSansCJKkr" to the above font-family
However, I think it would be better to add the specification to font-family in advance if other languages are also considered.
For example, I would like to know if there are any advantages or disadvantages of the following description.
font-family: heiseimin, NotoSansCJKjp, NotoSansCJKkr, NotoSansCJKkr, NotoSansThai, NotoSansCJKsc, NotoSansCJKtc sans-serif;
How should we deal with the need for multilingual printing in PDF?
Please advise if you have any examples.