如何解决流程键选项问题?

如何解决流程键选项问题?

实际上,我格式化了我的笔记本电脑并安装了。安装后,我使用Windows 10安装了新版本。现在我想更新我的,但我面临。Winedt 10.3MiktexFriggeri Resume/CV\Processkeysoptions {unicode-math}

代码:

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Friggeri Resume/CV
% XeLaTeX Template   
% Version 1.0 (5/5/13)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% Adrien Friggeri ([email protected])
% https://github.com/afriggeri/CV
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
% Important notes:
% This template needs to be compiled with XeLaTeX and the bibliography, if used,
% needs to be compiled with biber rather than bibtex.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\documentclass[]{friggeri-cv} % Add 'print' as an option into the square bracket to 
remove colors from this template for printing

\usepackage{unicode-math}
\usepackage{fontawesome}

%\RequirePackage[math-style=TeX,vargreek-shape=unicode]{unicode-math}

%\RequirePackage{unicode-math}


\definecolor{light-gray}{gray}{0.55}
\definecolor{skype}{HTML}{12A5F4}
\definecolor{html5}{HTML}{e34c26}
\definecolor{php}{HTML}{6c7eb7}
\definecolor{db}{HTML}{FF9900}
\definecolor{linkedin}{HTML}{1683BB}

\addbibresource{bibliography.bib} % Specify the bibliography file to include 
 publications

\begin{document}
\newfontfamily{\FA}{FontAwesome}

\header{S }{K}{} % Your name and current job title/field

%----------------------------------------------------------------------------------------
%   SIDEBAR SECTION
%----------------------------------------------------------------------------------------

\begin{aside} % In the aside, each new line forces a line break
\section{Personal Info}
\emph{Father Name} SA
\emph{D.O.B} 00$^{st}$ Jan, 000
\emph{Nationality} ABC
\emph{Marital status} ABC
\section{{\FA \faHome}}
A Road, M 
R
P
\section{\faPhone}
000000000000
%~
%\section{\includegraphics[scale=0.11]{linkedinLogo.png}}
%{linkedin.com/in/yourname}
%~
\section{\includegraphics[scale=0.11]{skypeLogo.png}}
{84}
%~
\section{\faEnvelope}
%[email protected]
%{[email protected]}
sn\\@gmail.com
%\href{http://www.smith.com}{http://www.smith.com}
%\href{http://facebook.com/johnsmith}{fb://jsmith}
\section{Languages}
\emph{proficient}     English
\emph{mother tongue}  English
\emph{}               Chinese
\emph{}               Punjabi
\section{Computer Skills}
{\color{red} $\varheartsuit$} \LaTeX, Tikz, jPicEdt
Matlab, Mathematica, C/C++
\LaTeX Draw, Mayura Draw, MS Office
\section{Hobbies}
Movies, Photography
\end{aside}

%----------------------------------------------------------------------------------------
%   Objective SECTION
%----------------------------------------------------------------------------------------
\section{Objective}
researcher in my field.
%----------------------------------------------------------------------------------------
%   WORK EXPERIENCE SECTION
%----------------------------------------------------------------------------------------

\section{Experience}

\begin{entrylist}
%------------------------------------------------
\entry
{2015-Present}
{US}
{Campus, US}
{\emph{Lecturer} \\
\begin{itemize}
\item Teaching Calculus, Differential Equations, Numerical Analysis.
\end{itemize}}
%---------------------------------
\entry
{2013 - 2014}
{AU}
{abc}
{\emph{Teacher Assistant} \\
\begin{itemize}
\item Assist various courses named "Numerical Analysis".
\item Assist Computing Labs in Department of Mathematics.
\end{itemize}}
%%------------------------------------------------

%------------------------------------------------
\end{entrylist}
%----------------------------------------------------------------------------------------
%   EDUCATION SECTION
%----------------------------------------------------------------------------------------

\section{Education}
\begin{entrylist}
%------------------------------------------------
\entry
{2010-2013}
{Masters {\normalfont in MathematicS}}
{Abc, ABC}
{Specialized in Finite Element Methods}
%------------------------------------------------
\end{entrylist}
%---------------------------------------------------
%\newpage
 %----------------------------------------------------------------------------------------
 %  Research SECTION
 %----------------------------------------------------------------------------------------
 \section{Research}

 %%----------------------------------------------------------------------------------------
 %% Research SECTION
 %%----------------------------------------------------------------------------------------
 \newpage
 \section{Semester Projects}
%%----------------------------------------------------------------------------------------
%%  Research Interest SECTION
%%----------------------------------------------------------------------------------------
\section{Research Interest}
\begin{itemize}
\item Differential Equations
\item Finite Element Methods
\end{itemize}
%%----------------------------------------------------------------------------------------
%%  Teaching Interest SECTION
%%----------------------------------------------------------------------------------------
\section{Teaching Interest}
\begin{itemize}
\item Calculus
\item Numerical Analysis
\end{itemize}
%%----------------------------------------------------------------------------------------
%%  references SECTION
%%----------------------------------------------------------------------------------------
\section{References}
\emph{\textbf{Name}} Dr(Supervisor)\\
\emph{\textbf{Email}} @mail.edu\\
\emph{\textbf{Phone}} 0000000000000000\\
\emph{\textbf{Designation}} Professor\\
\emph{\textbf{Name of University}}AU.


\end{document} 

答案1

仍然没有给出你收到的错误消息,但我认为是这个错误,

! Package keyvalue Error: Unknown option 'vargreek-shape' for package
(keyvalue)                unicode-math-xetex.

For immediate help type H <return>.
 ...                                              

l.533 \ProcessKeysOptions {unicode-math}

这表明该模板几乎两年前没有针对 unicode-math 的变化进行更新,在此网站上搜索vargreek-shape将显示从 2017 年初开始的多个答案,例如

编译错误“option-unknown”-unicode-math

最简单的修复方法是从类文件的第 51 行删除有问题的选项,vargreek-shape=unicode,尽管该类使用了我没有的几种字体,所以我得到了其他不相关的、未找到字体的错误。

相关内容