带有欧元符号的等式

带有欧元符号的等式

我需要在 LateX 中建立这个等式,但是当我尝试这样做时出现一些错误。

enter image description here

你能帮我吗??

答案1

我会考虑用于siunitx这类事情:

\documentclass{article}
\usepackage{amsmath}
\usepackage{siunitx}
\usepackage{eurosym}

\DeclareSIUnit{\pers}{pers}
\DeclareSIUnit{\EUR}{\text{\euro}}
\sisetup{
  per-mode = fraction,
  inter-unit-product = \ensuremath{{}\cdot{}},
}

\begin{document}
\[
\mathit{Ctrain}_{\textup{Tot}}=
\SI{4}{h}\cdot \SI{10}{\EUR\per\hour\per\pers}\cdot\SI{1500}{\pers}
\]
\end{document}

enter image description here

答案2

由于您没有提供更多信息,因此我只能猜测您正在使用什么 documentclass 以及您正在处理什么错误。我添加了两个示例:

\documentclass{article}
\usepackage{lmodern,textcomp}
\usepackage{eurosym}
\usepackage{amsmath, amssymb}

\begin{document}

${\text{Ctrain}_{\text{Tot}}=4h*10 \frac{\mbox{\euro}}{h*\text{pers}}*1500\text{pers}}$

or

${\text{Ctrain}_{\text{Tot}}=4h*10 \frac{\text{\euro}}{h*\text{pers}}*1500\text{pers}}$

\end{document}

你也应该使用搜索功能!有一个很好的答案这里

答案3

读完这篇文章后,有多种方法可以获得欧元、文本欧元、欧元等。仅举一个例子点击这里

但是在 overleaf 中,以及在我使用 MikTex 的设置中,以及在 Visual 中的 LatexWorshop 中,我得到了正确的结果:

\textup{\euro}

它随包装一起提供:

\usepackage{eurosym}

答案4

在 $ 符号之间使用它:

 { CTrain }_{ Tot }\quad =\quad 4h*10\frac { \euro  }{ h*pers } *1500pers

为了能够使用此代码,您必须首先import required package for euro sign.使用以下任何一个包:

  • eurosym
  • eurosans

如果此功能在您的 tex/latex 编辑器上不起作用,请使用以下链接:

http://www.codecogs.com/latex/eqneditor.php

相关内容