如何进入

如何进入

我需要输入

答案1

包含此特定字符的 Apple Color Emoji 字体未将其字形编码为常规字符,因此无法使用。请参阅表情符号。似乎很少有字体包含这些字形(Unicode 中的封闭字母数字补充)。

在我的 Mac 电脑上,只有一种字体包含这些字体:Hiragino 字体。下面是一个对我有用的示例(使用 LuaLaTeX 编译,而不是 XeLaTeX,后者对我不起作用。)

\documentclass{article}
\usepackage{fontspec}
\usepackage{xcolor}
\newfontfamily\Hiragino{Hiragino Sans}[Color=red]
\begin{document}

{\Huge\Hiragino 

答案2

答案3

也许太经典了,但是......

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[utf8]{xcolor}
\usepackage{newunicodechar}
\newunicodechar{

答案4

另一个选择是tcbox

\documentclass[11pt,a4paper]{article}

\usepackage{tcolorbox}
\usepackage{lmodern}

\newtcbox{\mychar}[1][]{nobeforeafter, tcbox raise base, colback=red, colframe=black, sharp corners, colupper=white, size=fbox, #1}

\begin{document}

How to write \mychar{B} or any other char (\mychar{A}, \mychar[colback=blue!70!black]{Z}, \mychar{!}, \mychar{\dots}) in \LaTeX

\end{document}

在此处输入图片描述

相关内容