标题中显示越南语单词错误

标题中显示越南语单词错误

我在论文标题中显示母语时遇到了问题。这是我使用的代码

\documentclass[12pt,a4paper]{amsart}


%% Packages that could be used

\usepackage{amscd,amssymb,amsthm}
\usepackage[utf8]{vietnam}
\usepackage{graphicx}
\usepackage{jipam}

\usepackage[utf8]{inputenc}
\usepackage[vietnam]{babel}


%\DeclareInputText


%% My definition
\newcommand{\mvec}[1]{\mbox{\bfseries\itshape #1}}


\title[Triangle inequality]{2 bất đẳng thức liên quan đến góc Brocard}
\author{Nguyen Duy Khanh}
\address{Hanoi, Vietnam}
\email{[email protected]}
\urladdr{http://www.toanly.org}

%\author{Author 2}
%\address{Line 3\\ Line 4\\ Address 2}
%\email{[email protected]}

%\keywords{Triangle,Inequality,Brocard angle}
%\subjclass[2000]{26D15}

\begin{document}

\begin{abstract}
Tiếng việt trong tiêu đề không hiển thị chính xác-The Vietnamese did not display correctly in the title.
\end{abstract}
\maketitle
\end{document}

标题应该是2 个月前· 来自专栏 Brocard但它似乎2 BT NG THC 林泉 N GÂC BROCARD

我的问题是,缺少哪个包可以帮助我显示正确的单词?请帮我解决我的问题。我写论文时真的需要它。非常感谢!

答案1

尝试将标题大写时,交互效果不佳amsart。修复它似乎很难,恐怕。但你可以采取一个技巧:在宏中定义大写标题,并在\title

\documentclass[12pt,a4paper]{amsart}

\usepackage[utf8]{vietnam}

%% Packages that could be used
\usepackage{amscd,amssymb,amsthm}
\usepackage{graphicx}
%\usepackage{jipam}

%% My definition
\newcommand{\mvec}[1]{\mbox{\bfseries\itshape #1}}

\newcommand{\mytitle}{2 BẤT ĐẲNG THỨC LIÊN QUAN ĐẾN GÓC BROCARD}

\begin{document}

\title[Triangle inequality]{\mytitle}
\author{Nguyen Duy Khanh}
\address{Hanoi, Vietnam}
\email{[email protected]}
\urladdr{http://www.toanly.org}

%\author{Author 2}
%\address{Line 3\\ Line 4\\ Address 2}
%\email{[email protected]}

%\keywords{Triangle,Inequality,Brocard angle}
%\subjclass[2000]{26D15}

\begin{abstract}
Tiếng việt trong tiêu đề không hiển thị chính xác.
Now the Vietnamese is displayed correctly in the title.
\end{abstract}
\maketitle

\end{document}

不要同时加载vietnambabel

相关内容