![アクセントの位置が悪い](https://rvso.com/image/305920/%E3%82%A2%E3%82%AF%E3%82%BB%E3%83%B3%E3%83%88%E3%81%AE%E4%BD%8D%E7%BD%AE%E3%81%8C%E6%82%AA%E3%81%84.png)
キリル文字の上に重アクセント(またはアクセント全体)を正しい位置に配置する方法を教えてください。
これとともに
|| \textbf{\mbox{сп\`{о}р-ен}, -ни} \textit{прил.\,м.} || \textbf{спор\`{я}} \textit{гл.}
私は
私はpolyglossiaパッケージ、Linux Libertineフォント、TeXworksを使用しています。ラテン文字ではすべてうまく動作します
編集
\documentclass{article}
\usepackage{fontspec}
\setmainfont[Numbers={OldStyle},Ligatures=TeX]{Linux Libertine}
\usepackage{polyglossia}
\setmainlanguage{czech}
\setotherlanguage{bulgarian}
\begin{document}
\textbulgarian{
|| \textbf{\mbox{сп\`{о}р-ен}, -ни} \textit{прил.\,м.} || \textbf{спор\`{я}} \textit{гл.}
}
\end{document}
答え1
コメントのフォローアップとして(そして好奇心から)、同じテキストを Noto Serif で示します。
\documentclass{article}
\usepackage{fontspec}
\setmainfont[Ligatures=TeX]{Noto Serif}
\usepackage{polyglossia}
\setmainlanguage{czech}
\setotherlanguage{bulgarian}
\begin{document}
\textbulgarian{
|| \textbf{\mbox{сп\`{о}р-ен}, -ни} \textit{прил.\,м.} || \textbf{спор\`{я}} \textit{гл.}
}
\end{document}