和
\begin{equation*}
PMI\left(w_{1};w_{2}\right)
=\log _{2} \dfrac{P(\llbracket w_{1},\rrbracket w_{2})} {P(\llbracket w_{1}) P(\rrbracket w_{2})}
\end{equation*}
我收到“未定义控制序列”错误。有人能帮忙吗?
答案1
要使用\llbracket
和\rrbracket
宏,需要加载斯特玛丽德或者傅立叶包。(加载fourier
数学包也会影响文档中数学排版的其他部分。)要使用宏\dfrac
和equation*
环境,必须加载数学包裹。
\documentclass{article} % or some other suitable document class
% for '\dfrac' macro and 'equation*' environment:
\usepackage{amsmath}
% for '\llbracket' and '\rrbracket' macros:
\usepackage{stmaryrd} % or: \usepackage{fourier}
\begin{document}
\begin{equation*}
\mathrm{PMI}(w_{1};w_{2})
=\log_{2} \dfrac{P(\llbracket w_{1},\rrbracket w_{2})}%
{P(\llbracket w_{1}) P(\rrbracket w_{2})}
\end{equation*}
\end{document}