这个符号的名字是什么?

这个符号的名字是什么?

这个符号的名字是什么?如何使用 Latex 书写它?

在此处输入图片描述

提前致谢。

答案1

对我来说,这看起来就像是镜像 P 与普通 P 合并。我无法用 Detexify 找到它,但构建起来并不难。

\documentclass{article}
\usepackage{graphicx}
\newlength{\fslength}
\makeatletter
\newcommand{\funnyP}{%
    \setlength{\fslength}{\f@size pt}%
    \reflectbox{P}\hspace*{-.359\fslength}\mbox{P}%
}
\makeatother
\begin{document}
\( \funnyP \) 
{\small \funnyP} 
{\funnyP} 
{\Large \funnyP} 
{\Huge \funnyP}
\end{document}

答案2

这个符号是qp 连字这是 q 和 p(或 c 和 p,或镜像 p 和 p)的组合。也许这里的符号是大写形式。此符号(小写形式)的 Unicode 为 U+0239,可用于除 pdflatex 之外的 tex 引擎。

这是在普通乳胶中使用的另一种解决方案,它利用\reflectbox镜像 P 字母,如下所示

在此处输入图片描述

\qpligature可以像下面的代码中那样定义类似的命令,并在文本或数学模式下使用:

\documentclass{article}
\usepackage{amsmath,graphicx}
%
\newcommand{\qpligature}{\ensuremath{\reflectbox{\text{P}}\mkern-6mu\text{P}}}
%
\begin{document}
%

%
\section{Text mode}
In text mode with different size:

\qpligature  \quad \large \qpligature \quad \Large \qpligature \quad \huge \qpligature
%

\normalsize

\section{Math mode}

In inline equations $ \qpligature = q p $

In separate equations:

%
\begin{align*}
    \qpligature = q p
\end{align*}
%

\huge
%
\begin{align*}
\qpligature = q p
\end{align*}
%

\end{document}

相关内容