尝试在 TeX 中重现类似下图的内容是否可行?我只是想在投入太多时间尝试之前征求一些专家的建议。
我已经弄乱了\raise
和\lower
,但我无法让线条重叠。
为了水平拉伸字体,我使用了\resizebox
包中的字体graphicx
。也许有更好的方法?
顺便说一句,下面的例子是使用 Inkscape 制作的,应该读作“Lorem of Ipsum and Dolor”。
附言:我不确定要使用哪些标签,因此请随意添加或更改它们。
答案1
您可以在 TikZ 中通过反复试验来做类似的事情,但我个人认为 Inkscape 是更好的工具。
\documentclass[border=2mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[inner sep=0pt,outer sep=0pt]
\node (L) {L};
\node (orem) at (L.north east) [scale=0.85,xshift=-0.3em,anchor=north west] {orem};
\node (of) at (L.south west) [gray,yshift=-0.1ex,scale=0.65,anchor=north west] {of};
\node (I) at (of.base east) [xshift=0.1em,anchor=base west] {I};
\node (psum) at (I.north east) [scale=0.525,anchor=north west] {psum};
\node (and) at (I.south east) [gray,yscale=0.5,xscale=0.775,anchor=south west] {and};
\node (Dolor) at (of.south west) [scale=0.9,yshift=-0.1ex,anchor=north west] {Dolor};
\end{tikzpicture}
\end{document}
答案2
这可以用 LaTeX 来完成,但需要大量的反复试验——对于这种事情,最好使用设计软件并导入图像。
\documentclass{article}
\usepackage{xcolor}
\begin{document}
\raisebox{-2ex}{\huge L}\kern-.5em\raisebox{-.1ex}{\Large\kern.1em o\kern.1em r\kern.1em e\kern.1em m}
\hskip.25em{\color{gray}of}%
\kern.15em\raisebox{-.7ex}[-2ex]{\Huge I}\raisebox{2.2ex}[-2.2ex]{\small\kern.03em p\kern.03em s\kern.03em u\kern.03em m}%
\llap{\large\color{gray}\kern.1em a\kern.1em n\kern.1em d}
\raisebox{0ex}[1ex]{\Large \kern.13em D\kern.13em o\kern.13em l\kern.13em o\kern.13em r}
\end{document}
答案3
您可以采用与绘制 LaTeX 和 TeX 徽标类似的方法。
\documentclass{article}
\usepackage{xcolor,graphicx}
\begin{document}
\scalebox{2}{\vbox{{\bfseries {\Huge L}\raisebox{10pt}{\Large orem}}\vskip0pt
\vspace*{-6pt}{{\bfseries{\Large \textcolor{gray}{of}} {\Huge I}\raisebox{10pt}{\Large psum}\hspace{-32pt}{\Large \textcolor{gray}{and}}}}}}
\end{document}