无法在乳胶中获取 Weierstrass p 符号

无法在乳胶中获取 Weierstrass p 符号

我正在尝试在 springer 模板中写入符号$\wp$,但得到的是“wp”而不是符号(amssymb并且amsmath也已安装)。有人可以帮忙吗?
https://media.springernature.com/full/springer-cms/rest/v1/content/18782940/data/Download+the+journal+article+template+package
这是 MWE

\documentclass[sn-mathphys]{sn-jnl}
\usepackage[utf8]{inputenc}

\title{springer trial}
\author{ }
\date{}

\begin{document}

\maketitle

\section{Introduction}
The symbol $\wp$ is not there.
\end{document}

在日志和输出文件中,我得到了

Package breakurl Warning: You are using breakurl while processing via pdflatex.(breakurl) \burl will be just a synonym of \url. on input line 48.

但我不认为输出错误与符号有任何关系。即使我删除了符号代码,它仍然存在。

答案1

program在我看来,由于某些(未知的)原因,该包加载的包几乎没有提供任何有用的东西。

这个包确实

%% require the {...} for \wp and \WP
\let\oldwp=\wp % save old \wp (curly p character)
%\def\wp#{\@wp}
%\def\@wp#1{\mbox{\normalshape wp}(#1)}
%\def\WP#{\@WP}
%\def\@WP#1{\mbox{\normalshape WP}(#1)}
%% Don't require {...}, ie use normal parentheses where required:
\def\wp{\mbox{\normalshape wp}}
\def\WP{\mbox{\normalshape WP}}

\wp我不知道这种(就代码而言有争议的)重新定义有什么用处。

无论如何,您都可以\oldwp代替使用。

\documentclass[sn-mathphys]{sn-jnl}
\usepackage[utf8]{inputenc}

\title{springer trial}
\author{ }
\date{}

\begin{document}

\maketitle

\section{Introduction}
The symbol $\oldwp$ is not there.
\end{document}

在此处输入图片描述

相关内容