6 与倒置的 9 不同的字体

6 与倒置的 9 不同的字体

您能否推荐一种6与颠倒的 不同的字体9

字体本身不一定会产生差异;如果您能想出一个聪明的解决方案,让上下颠倒的9看起来不像6,我会很高兴听到这个消息。

答案1

大多数具有不同 6 和 9 字形的字体都非常风格化或具有手写风格。如果这不可接受,那么您可以使用结合下划线宏和 OpenType 字体来区分 6 和 9。您可以将其直接输入到源代码中或使用宏。如果您经常需要这样做,那么 Teckit 映射方法可能会有用。

% !TEX TS-program = XeLaTeX

\documentclass[12pt]{article}
\usepackage{fontspec}
\setmainfont{Linux Libertine O}
\newcommand{\SN}[1]{{\fontspec{#1} #1: 6 and 9}}
\newfontfamily\LLO[Mapping=6and9]{Linux Libertine O}
\newcommand{\six}{6\symbol{"0331}}
\newcommand{\nine}{9\symbol{"0331}}
\begin{document}
\Large
\SN{Bradley Hand Bold}

\SN{Brush Script Std}

\SN{Chalkduster}

\SN{Giddyup Std}

Combining undermacron in source approach: 6̱ and 9̱

Macro approach: \six\ and \nine

Automatic using Teckit mapping: {\LLO 6 and 9}

\end{document}

代码输出

6and9.map文件

LHSName "plain"
RHSName "underlined"
pass(Unicode)
"6" > "6̱" 
"9" > "9̱"
; ligatures from Knuth's original CMR fonts
U+002D U+002D           <>  U+2013  ; -- -> en dash
U+002D U+002D U+002D    <>  U+2014  ; --- -> em dash

U+0027          <>  U+2019  ; ' -> right single quote
U+0027 U+0027   <>  U+201D  ; '' -> right double quote
U+0022           >  U+201D  ; " -> right double quote

U+0060          <>  U+2018  ; ` -> left single quote
U+0060 U+0060   <>  U+201C  ; `` -> left double quote

U+0021 U+0060   <>  U+00A1  ; !` -> inverted exclam
U+003F U+0060   <>  U+00BF  ; ?` -> inverted question

.tec使用编译为文件teckit_compile -u 6and9.map -o 6and9.tec

相关内容