“转交”符号 (c/o)

“转交”符号 (c/o)

LaTex 中是否有用于写地址的 ac/o 符号?我查看了综合乳胶符号列表但找不到。

答案1

可能又快又脏,看看ISO 字符实体及其 LaTeX 等效项在第 3 页:

${^c\!/\!_o}$ Jim Jones

使用 LaTeX 符号“care of”(c/o)


编辑:包括 Tobi 评论中的建议,其中包含字母co非斜体:

$\mathrm{^c\!/\!_o}$ Jim Jones

使用 LaTeX 符号“care of”(c/o)

答案2

\documentclass[a5paper]{article}
\newcommand{\co}{%
  \leavevmode
  \begingroup
  \setbox 2 = \hbox {\small c}%
  \setbox 0 = \hbox {/}%
  \dimen 0 = \ht 0  \advance \dimen 0 by -\ht 2
  \raise \dimen 0 \box 2
  \kern -0.3333\wd0/\kern -0.3333\wd 0
  \lower \dp 0 \hbox {\small o}%
  \endgroup
}
\begin{document}
\co\space Mr. Bean
\end{document}

输出结果

答案3

“c” 应与上升部齐平,“o”应与基线齐平;textcomp's 的\textfractionsolidus斜线比正常的 略好/;但为了对称,它可以稍微凸起。

\documentclass{article}
\usepackage{textcomp}
\makeatletter
\newcommand{\co}{%
  \check@mathfonts
  \raisebox{.85ex}{\fontsize{\sf@size}{\z@}\selectfont c}%
  \kern-.1em\raisebox{.2ex}{\textfractionsolidus}\kern-.1em
  {\fontsize{\sf@size}{\z@}\selectfont o}%
}
\makeatother
\begin{document}
\co\ Mr.~Bean

\end{document}

在此处输入图片描述

答案4

使用 XeLaTeX 和可以显示字符的字体,您可以使用Unicode 字符 U+2105和写\char"2105

\documentclass{article}

% load a font that can display the symbol
\usepackage{noto}

\begin{document}
  \char"2105
  \symbol{"2105} % alternative syntax, see comment below.
  ^^^^2105 % yet another syntax
\end{document}

不幸的是,这不适用于 pdfLaTeX,可能也不适用于其他版本。

相关内容