\documentclass{article}
\begin{document}
\normalsize
\section{The Model}
${\P}\_t$ is a stochastic process representing the stock price.
${\varphi}\_t$ is the borrowing cost of 1 share on the time interval [t, t+dt].
It is assumed the interest rate is 0.
$\X_{t}^{Q}$ = Capital of squeezer.
\end{document}
我认为错误来自压榨机大写字母的符号,但无法找出错误原因。如有任何帮助,我将不胜感激。
答案1
我对随机过程符号知之甚少,除了从维基百科页面刚刚。由此,我认为你实际上是想写:
$\{P_t\}$ % ❶
is a stochastic process representing the stock price.
$\{\varphi_t\}$ % ❷
is the borrowing cost of 1 share on the time interval
$[t, t+dt]$. % ❸
It is assumed the interest rate is 0.
$X_{t}^{Q} = \mbox{Capital of squeezer}$. % ❹
❶ 我假设你想要打印带有下标的花括号,如维基百科文章中描述的符号所示。我还删除了,\
因为我很确定你想要打印磷而不是 ¶。顺便说一下,%
表示注释,黑色数字是我在代码中启用注释引用的方式。我总是在这些注释前面加上 ,%
这样复制粘贴的人就不会因为这些注释的外观而出错。
❷ 对外观进行了类似的修改,尽管这更像是一种财务符号。
❸全部数学材料应该放在$
…里面$
,而不仅仅是 LaTeX 给你错误的内容。你会发现这个变化提供了更好的间距,并且打印吨和日期以数学斜体表示,这就是您想要的。
❹ 我去掉了\
之前的X
,因为\X
没有任何意义。我还将短语“Capital of squeezer”移到了数学中,因为它是数学表达式的右侧=
,因此是数学表达式的一部分。反过来,它被包含在里面,\mbox
因此它将被视为文本。¹
- 更好的方法是使用包
\text
中的命令amsmath
而不是\mbox
,但这会增加答案的复杂程度,而这在此时是不必要的,因此这个脚注主要针对其他评论者。