写一个低 ^ 符号

写一个低 ^ 符号

是否可以像 \texttildelow 中的波浪符号一样使用 ^?也就是说,句号是否可以用 ^ 符号代替?

答案1

您可以通过降低重音符号来定义符号\^。由于您似乎想用重音符号代替句号,因此您也可以设置相关的空格因子。

\documentclass{article}

\NewDocumentCommand{\texthatlow}{}{%
  \raisebox{-1.25ex}[0.25ex][0pt]{\^{}}%
  \spacefactor\sfcode`.
}

\begin{document}

Here it ends. And something else.

Here it ends\texthatlow{} And something else.

\end{document}

在此处输入图片描述

答案2

如果您使用 Unicode TeX(例如 lualatex/xelatex)和合适的字体,您可能能够使用 U+2038(CARET),具体取决于您对符号的使用情况。(在大多数字体中,它位于基线略下方,作为插入标记)

在此处输入图片描述

\documentclass{article}
\usepackage{fontspec}
\setmainfont{Times New Roman}
\begin{document}

one two‸ three

\end{document}

相关内容