如何在 TeX 中写参考标记符号※?

如何在 TeX 中写参考标记符号※?

考虑一下参考标记符号※,如下图所示:

参考标记

我怎样才能在 TeX 中写出这个符号?

答案1

使用\textreferencemark

\documentclass{article}
\begin{document}

\textreferencemark

\end{document}

xelatex和的结果pdflatex有些不同,看下面的截图:

xelatex pdflatex

答案2

我使用了\bigtimesUnicode 数学。定义\timesdots如下:

\def\timesdots{\vbox{\baselineskip=0pt \lineskiplimit=-\maxdimen 
   \halign{\hfil##\hfil\cr
      $\cdot\kern-.44em\bigtimes\kern-.44em\cdot$\cr\noalign{\kern.2em}
      .\cr\noalign{\kern-.8em}.\cr\noalign{\kern.6em}}}%
}

如果您想使用 Unicode 字符 U+203B(参考标记),那么您可以\char"203B在 Unicode TeX 引擎中使用,或者直接在您的 TeX 源文件中使用它※。

答案3

图片模式!

\documentclass{article}
\usepackage{pict2e}

\newcommand{\blob}{%
  \raisebox{0.02em}{%
    \setlength{\unitlength}{0.107em}%
    \linethickness{0.4\unitlength}%
    \begin{picture}(8,6)
    \roundcap
    \Line(1,0)(7,6)
    \Line(1,6)(7,0)
    \put(4,0.5){\makebox(0,0){.}}
    \put(6.5,3){\makebox(0,0){.}}
    \put(4,5.5){\makebox(0,0){.}}
    \put(1.5,3){\makebox(0,0){.}}%
    \end{picture}%
  }%
}

\begin{document}

A\blob B

\end{document}

在此处输入图片描述

答案4

\usepackage{mathabx}

\begin{document}
$ \divideontimes$

在此处输入图片描述

不完全是,但类似:-))

相关内容