![重音位置不好](https://rvso.com/image/305920/%E9%87%8D%E9%9F%B3%E4%BD%8D%E7%BD%AE%E4%B8%8D%E5%A5%BD.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}