! LaTeX 错误:命令 \textcurrency 在编码 T1 中不可用

! LaTeX 错误:命令 \textcurrency 在编码 T1 中不可用
\documentclass[a4paper,12pt,twoside,]{scrartcl}
\usepackage[T1]{fontenc}

\usepackage{lmodern} 
\usepackage{graphicx}
\usepackage{cite}
\usepackage{multirow}
\usepackage[ansinew]{inputenc}
\begin{document}

\title{Der Name Ihrer Arbeit}
\author{Ivan Arov}

\maketitle  
\pagestyle{empty}
\newpage                
\listoffigures
\listoftables
\newpage

by road, are as short as possible."\cite{UIRR}

 this problem ~\cite{intermodal}:

 \cite{container repositioning}. This significantly decreases the level of efficiency of railways. This problem can be  solved 


 deployed on other services, would stand idle.  \cite{production systems}

\bibliographystyle{plain}
\bibliography{literature}


\end{document}

很抱歉问了同样的问题,但我使用 latex 已经有 2-3 天了...我在引用方面也遇到了问题 - 一些来源未包含在输出文件中。如果有人能提供帮助,我将不胜感激。

答案1

出现此错误消息的一个原因可能是编码错误。

确保您的文件编码为 UTF-8。如果您使用的是 Linux 系统,您可以执行file whatever.tex以下命令获取类似

whatever.tex: LaTeX document, UTF-8 Unicode text

然后确保你使用的是\usepackage[utf8]{inputenc}而不是\usepackage[latin1]{inputenc}或类似的。(这正是为我修复错误消息的方法。)

相关内容