我曾尝试用 LaTeX 书写(在 Mac 上的 TeXShop 中),但未能成功将罗马尼亚字母放入我的 pdf word 中。
我曾尝试这样写,但仍然不起作用。任何提示都将受到很好的欢迎。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{combelow}% provides \cb to place comma below character
\usepackage{newunicodechar}
\newunicodechar{ș}{\cb{s}}
\newunicodechar{ț}{\cb{t}}
\begin{document}
\cb{s} and \cb{t}
ș and ț
\end{document}
我解决了这个问题,这对我有用:
\documentclass{article}
\usepackage[romanian]{babel}
\usepackage{combelow}
\useshorthands{'}
\defineshorthand{'s}{\cb{s}}
\defineshorthand{'t}{\cb{t}}
\defineshorthand{'S}{\cb{S}}
\defineshorthand{'T}{\cb{T}}
\begin{document}
Bucure'sti 't 'T 'S
\end{document}
享受。