Latex 错误:Unicode 字符 ν (U+03BD)

Latex 错误:Unicode 字符 ν (U+03BD)

我尝试使用 overleaf 以 pdf 形式输出以下句子:...$c$, then the cost of adding $v$ jobs is $vc$, here $c$ and $v$ are parameters.

编译代码时出现两个错误

\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage[letterpaper,top=2cm,bottom=2cm,left=3cm,right=3cm,
            marginparwidth=1.75cm]{geometry}
\usepackage[margin=1in]{geometry}
% here pops up the 1st error: "LaTeX Error: Option clash for package geometry"
\usepackage{setspace}  
\doublespace 
...
\subsubsection{Firms}
... 
$c$, then the cost of adding $v$ jobs is $νc$. 
% here the 2nd error: "LaTeX Error: Unicode character ν (U+03BD)".

输出结果只显示“...C,然后添加的成本工作是C”最后一个公式应该是风险投资而不是C使用参数丢失的。

有什么帮助吗?

提前致谢。

答案1

使用评论中Mico的建议,不再有错误。

  1. 消除\usepackage[margin=1in]{geometry}
  2. 将 ν(希腊字母“nu”)替换为 v(拉丁字母“vee”)

如果仍然遇到错误,您应该进行 MWE。

代码

\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage[letterpaper,top=2cm,bottom=2cm,left=3cm,right=3cm,
            marginparwidth=1.75cm]{geometry}
\usepackage{setspace}  
\doublespace 

\begin{document}

\subsubsection{Firms}
... 
$c$, then the cost of adding $v$ jobs is $vc$.

\end{document}

相关内容