轻微排版问题。特殊 L 字符

轻微排版问题。特殊 L 字符

我需要写这个:

特殊 L 字符

如何生成特殊的 L 字符。我搜索了网络,但根本找不到有人问类似的问题。

答案1

正如评论中所说,我建议为此定义一个命令。这样以后更改外观就很容易了(宏名取自 Joseph...)。

\documentclass{article}

\newcommand\laevo{\textsc{l}}

\begin{document}
poly-\laevo-lysine
\end{document}

如果字体没有小型大写字母(且只有小型大写字母),则可以使用缩放大写字母L(使用\scaleboxfrom graphicx.sty):

\documentclass{article}

\usepackage{graphicx}
\newcommand\laevo{\scalebox{0.75}{L}}

\begin{document}
poly-\laevo-lysine
\end{document}

答案2

在我看来,小写的 L.\textsc{l}就可以做到这一点!

\documentclass{article}

\begin{document}
poly-\textsc{l}-lysine
\end{document}

开始使用 *TeX 的困难之一就是了解它的一些功能叫什么。这是一个大世界,所以计划至少花 30 分钟左右的时间阅读 *TeX 简介;这会让整个事情变得更加有趣!

编辑:请务必查看下面 Tobi 对无小写字母字体的有用说明!

相关内容