缩放字母但保留原始空间

缩放字母但保留原始空间
La\scale{T}eX is a high-quality typesetting system; 
it includes features designed for the production of technical and scientific documentation. LaTeX is the de facto standard for the communication and publication of scientific documents. LaTeX is available as free software.

我想要一个\scale命令,让字母占据其原始空间,然后渲染为更大的空间,比如大两倍。

我很乐意使用 pgf/tikz,它类似于overlaptransform canvas选项,但这些选项不保留原始空间。

我想我可以有两个 T。一个 T 是白色的,所以它是不可见的,另一个 T 是重叠的。但我觉得这很麻烦。有没有更好的方法?

字母增大两倍但保留其原始空间

答案1

我怀疑这是否算好的排版:

\documentclass{article}
\usepackage{graphicx}
\begin{document}

La\makebox[\fontcharwd\font `T]{\scalebox{2}{T}}eX is a high-quality 
typesetting 
\end{document}

在此处输入图片描述

答案2

\documentclass{article}
\begin{document}
This is strange La\phantom{T}\clap{\hspace{-0.6em}\raisebox{-0.6ex}{\huge T}}eX and this in normal \LaTeX
\end{document}

带有 LaTeX 徽标的文本

相关内容