! 缺少插入 \endcsname。\def l.252 ... \UnicodeEncodingName {}{"007E}

! 缺少插入 \endcsname。\def l.252 ... \UnicodeEncodingName {}{"007E}

我不知道发生了什么。几天前这段代码还能用。现在它突然停止运行,并出现一个我完全不明白的错误

 ! Missing \endcsname inserted. <to be read again> 
 \def  l.252 ...   \UnicodeEncodingName {}{"007E}
 ?

有人能帮我吗?这是我的代码:

\documentclass[a4paper,10pt]{article}

\usepackage{marvosym}
\usepackage{color}
\usepackage{fontspec}           %load fonts
\usepackage{url,parskip}            %formatting
\usepackage{xunicode,xltxtra}   %other packages for XeTeX
\usepackage[polish]{babel}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{geometry}

%Graphics - Colors
\RequirePackage{color,graphicx}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage[big]{layaureo}

\usepackage{soul}
\usepackage{scrpage2}

\usepackage{supertabular}       %for Grades
\usepackage{titlesec}           %custom section

%Setup hyperref package, and colours for links
\usepackage{hyperref}
\definecolor{linkcolour}{rgb}{0,0.2,0.6}
\hypersetup{colorlinks,breaklinks, urlcolor=linkcolour, linkcolor=linkcolour}

%FONTS
\defaultfontfeatures{Mapping=tex-text}
\setmainfont[SmallCapsFont = Corbel]{Corbel}

\titleformat{\section}{\large\scshape\raggedright}{}{0em}{}[\titlerule]
\geometry{verbose,a4paper,tmargin=2cm,bmargin=1cm,lmargin=2cm,rmargin=2cm}


\newenvironment{cvheader}%
    {\begin{tabular}{p{0.22\textwidth} p{0.55\textwidth} p{0.15\textwidth}}%
    }%
    {\end{tabular}}%



%-------BEGIN DOCUMENT--------

\begin{document}
\pagestyle{empty} % non-numbered pages

\setcounter{secnumdepth}{-1 }

 %--------------------TITLE-------------

\vspace*{ -26 mm}
\par{\centering {\Huge \textbf{Emilia Samul} \\
{\color{MidnightBlue}
\fontspec{Eutemia I Italic}
\huge Curriculum Vitae
\\[10pt]\par}
{\color{white} \hrule} %does this rule really change anything?
}\par} 

\vspace{-14 mm}
\section{\color{NavyBlue} INFORMACJE OSOBISTE}
%\begin{tabular}{rl}
\begin{cvheader}
\textsc{Data i miejsce urodzenia:} & 28.03.1986, Łuków &  \multirow{5}{*}{\includegraphics[width=2.2cm]{cvz.jpg}} \\
\textsc{Adres:} & 20-020 Lublin, ul.Lipowa 23/3\\
\textsc{Telefon:}   & +48 791 039 400 \\
\textsc{Email:} &  \href{mailto:[email protected]}{\color{MidnightBlue}[email protected]}\\
\end{cvheader}
%\end{tabular}


\section{\color{NavyBlue} DOŚWIADCZENIE ZAWODOWE}
\begin{tabular}{r|l}
\textsc{od XI.2011} & \textbf{Podinspektor d/s księgowości w Zakładzie Wodociągów i Kanalizacji w Wiązownie} \\
&Dekretacja oraz księgowanie dokumentów w programie FK firmy "ETOBRES" \\
&Uzgodnienie obrotów i sald kont, analityki przychodów i kosztów na koniec każdego miesiąca\\
&Terminowe przygotowanie sprawozdań\\
\end{tabular}


\vspace{-2 mm}
\section{\color{NavyBlue} OSIĄGNIĘCIA I UMIEJĘTNOŚCI}
\begin{itemize}
\vspace{-2 mm}
\item czynne \textbf{prawo jazdy} kategorii\textbf{ B} 
\end{itemize}

\vspace{-3 mm}
\section{\color{NavyBlue} ZAINTERESOWANIA}
\begin{tabular}{rl}
\textsc{MALOWANIE:} & głównie pejzaże farbami olejnymi \\
\textsc{FILM:}  &  Kino europejskie \\
& Gry logiczne \\
\end{tabular}

\end{document}

答案1

我最近遇到了同样的错误,这就是我解决它的方法。

该错误是由于 LaTeX 和格式文件不一致造成的(我不太明白)。我假设使用的是 TeX Live 2016。我只尝试了 Windows 解决方案,但我认为该命令在 OSX 和 Linux 上的工作方式相同。

如果在 OSX 或 Linux 上,在终端输入

sudo fmtutil-sys --all

如果在 Windows 上,请打开命令提示符

C:\texlive\2016\texmf-dist\scripts\texlive

并输入

fmtutil-sys -all

来源:使用 tlmgr 更新 TexLive 2016 后重建格式时出错

相关内容