在脚本字体中更改单词内的颜色

在脚本字体中更改单词内的颜色

我正在为我们的学校编写一些文本,它需要使用一些德语脚本字体(Schulausgangsschrift),我使用“Schulschriften”软件包来完成。

有些单词的字母需要着色,有些则不需要。但如果我使用\color\textcolor脚本字母更改颜色,它们将不再正确连接。

你有什么建议吗?

以下是我的结果:

例子

下面是我的代码:

\documentclass[28pt,a4paper,]{article}
\usepackage{wesa}
\usepackage[latin1]{inputenc}
\usepackage{color}

\begin{document}

This Text ist in one color, so the last o is correctly connected to the t:\\
\wesa Boot

\normalfont
Using color: o and t are not properly connected:\\
\wesa 
B\color{red}oo\color{black}t

\normalfont
Same with textcolor:\\
\wesa
B\textcolor{red}{oo}\textcolor{black}t

\end{document} 

答案1

正如 Ulrike 指出的那样这个答案,使用luacolor将修复该问题(您必须使用 LuaLaTeX 进行编译):

\documentclass[28pt,a4paper,]{article}
\usepackage{wesa}
\usepackage{luacolor}

\begin{document}

This Text ist in one color, so the last o is correctly connected to the t:\\
\wesa Boot

\normalfont
Using color: o and t are not properly connected:\\
\wesa 
B\color{red}oo\color{black}t

\normalfont
Same with textcolor:\\
\wesa
B\textcolor{red}{oo}\textcolor{black}t

\end{document} 

在此处输入图片描述

相关内容