I'm not sure this is the right place, sorry.
After loading \RequirePackage{pdfmanagement-testphase}, adding Japanese characters into PDF metadata does not work at all on (u)pLaTeX + dvipdfmx.
upLaTeX + dvipdfmx
Nowadays we use the following syntax.
\documentclass[dvipdfmx]{ujarticle}
\usepackage{hyperref}
\usepackage{pxjahyper}
\hypersetup{pdftitle={日本語}}
\begin{document}
\section{はじめに}
あいうえお。
\end{document}
If we add
\RequirePackage{pdfmanagement-testphase}
\DeclareDocumentMetadata
{
backend = dvipdfmx
}
then an error happens:
! LaTeX3 Error: Invalid UTF-8 string: missing continuation byte (x3).
It seems that "l3str-convert" does not support Japanese characters. (maybe similar to latex3/latex3#939; you should consider better handing of Japanese tokens; just pass it as-is, literally untouched, is ok for us.)
pLaTeX + dvipdfmx
Nowadays we use the following syntax.
\documentclass[dvipdfmx]{jarticle}
\usepackage{hyperref}
\usepackage{pxjahyper}
\hypersetup{pdftitle={日本語}}
\begin{document}
\section{はじめに}
あいうえお。
\end{document}
If we add
\RequirePackage{pdfmanagement-testphase}
\DeclareDocumentMetadata
{
backend = dvipdfmx
}
then an error happens:
! Package pxjahyper Error: The hyperref 'unicode' mode is not supported
(pxjahyper) on the pTeX engine.
The error itself is natural enough, since pLaTeX engine cannot handle Unicode at all. Therefore, "hyperref" should not enable "unicode" mode on pLaTeX.
FYI: What the "pxjahyper" package does?
When using (u)pLaTeX, we need to give the correct "encoding conversion rule" to dvipdfmx by using pdf:tounicode special. The rule is provided in the ToUnicode CMap developed by Adobe or other contributers (for upLaTeX "UTF8-UTF16" or "UTF8-UCS2", for pLaTeX "EUC-UCS2" or "90ms-RKSJ-UCS2"), but we need to select the correct one depending on "which engine is running (pLaTeX or upLaTeX)" and "which encoding is used (mostly Shift-JIS on win32 / EUC-JP on Unix)". The "pxjahyper" package automatically does it.
I'm not sure this is the right place, sorry.
After loading
\RequirePackage{pdfmanagement-testphase}, adding Japanese characters into PDF metadata does not work at all on (u)pLaTeX + dvipdfmx.upLaTeX + dvipdfmx
Nowadays we use the following syntax.
If we add
then an error happens:
It seems that "l3str-convert" does not support Japanese characters. (maybe similar to latex3/latex3#939; you should consider better handing of Japanese tokens; just pass it as-is, literally untouched, is ok for us.)
pLaTeX + dvipdfmx
Nowadays we use the following syntax.
If we add
then an error happens:
The error itself is natural enough, since pLaTeX engine cannot handle Unicode at all. Therefore, "hyperref" should not enable "unicode" mode on pLaTeX.
FYI: What the "pxjahyper" package does?
When using (u)pLaTeX, we need to give the correct "encoding conversion rule" to dvipdfmx by using
pdf:tounicodespecial. The rule is provided in the ToUnicode CMap developed by Adobe or other contributers (for upLaTeX "UTF8-UTF16" or "UTF8-UCS2", for pLaTeX "EUC-UCS2" or "90ms-RKSJ-UCS2"), but we need to select the correct one depending on "which engine is running (pLaTeX or upLaTeX)" and "which encoding is used (mostly Shift-JIS on win32 / EUC-JP on Unix)". The "pxjahyper" package automatically does it.