乳胶中的罗马尼亚语

乳胶中的罗马尼亚语

我曾尝试用 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}

享受。

答案1

对于当前版本的 LaTeX (2016/03/31),newunicodechar不需要,因为 和 的代码șț包含在 UTF-8 支持中。您甚至不需要combelow,默认安装使用的命令是\textcommabelow

\documentclass{article}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[romanian]{babel}

\begin{document}
\textcommabelow{s} and \textcommabelow{t}

ș and ț
\end{document}

在此处输入图片描述

答案2

\documentclass{article}

    \usepackage[romanian]{babel}
    \usepackage{combelow}

\begin{document}

    \^{I}mi pare bine de cuno\cb{s}tin\cb{t}\u{a}.

    Nu vorbesc rom\^{a}ne\cb{s}te.

    Aeroglisor meu este plin de \cb{t}ipari!

\end{document}

在此处输入图片描述

答案3

您需要安装(从 MiKTeX 控制台以管理员 -> 包)“babel-romanian”包:在此处输入图片描述 然后在 TeXstudio 中,只需添加以下两行:

\usepackage[utf8x]{inputenc}
\usepackage[romanian]{babel}

结果: 在此处输入图片描述

相关内容