可能有人已经问过这个问题了,但我找不到相关信息,所以只能再次询问。
我遇到了这个问题:我将使用环境将数学公式放入文本中$ $
,并且我需要在数学公式中放入一些文本;我可以使用该\text{}
命令,但我试图保留数学环境样式。问题是它不会进入新行。
图像显示了我的问题。
下面是一段给我带来问题的代码
per poi ottenere $Q:=P(\xi_1)\land ...\land P(\xi_m)\land P(-\xi_1)\land ...\land P(-\xi_m)="uno\ stato\ casuale\ si\ stabilizza\ in\ uno\ degli\ stati\ memorizzati\ o\ un\ suo\ opposto".$\\
A questo punto
答案1
不要在数学公式中输入长描述:
per poi ottenere
$Q:=P(\xi_1)\land\dots\land P(\xi_m)\land P(-\xi_1)\\dots\land P(-\xi_m)=$
``\textit{uno stato casuale si stabilizza in uno degli stati memorizzati o un suo opposto}''.
A questo punto
\textit
如果不需要斜体,请删除。
也不要用于\\
结束段落。注意\dots
省略号。记得有\usepackage{amsmath}
。
引号也是
`` ''
不是"
。
上面的类似文字应该有
che si stabilizza in~$x$
(请注意不要换行。)