有些用户希望能够拿到TeXLive的logo是如何制作的,比如,我们看到TeXLive安装过程里的左边栏的图片如下: wizard-w32 实际本站TeXLive的logo也是类似,这里提供下其制作的TeX代码,有需要的用户可以下载使用。

\documentclass{standalone}
\usepackage{tikz}

% http://www.tug.dk/FontCatalogue/optima/
% URW Classico (An Optima clone)
\renewcommand*\sfdefault{uop}
\renewcommand*\familydefault{\sfdefault}
\usepackage[T1]{fontenc}

\definecolor{tlblue}{HTML}{0078B8}
% Based on the normal \TeX macro but with less negative kerning between the E and X
\newcommand*\TeXLive{T\kern -.1667em\lower .5ex\hbox {E}\kern -.025emX\,Live}
\begin{document}
\begin{tikzpicture}[x=1pt,y=1pt,inner sep=0pt,outer sep=0pt]
    \fill [tlblue] (0,0) rectangle (567,160);
    \node [white] at (29.7,33.8) [anchor=south west] {\scalebox{10}{\bfseries\TeXLive}};
    \node at (388,9) [anchor=south west] {\includegraphics[width=15em]{tl-lion}};
 %  \node [anchor=south west] {\includegraphics[height=16em]{logo}};
\end{tikzpicture}%
\end{document}
效果图: texlive_logo 相关素材下载: 本站下载:texlive_logo 选自:https://bitbucket.org/martin_scharrer/tex-logo/

点赞(1)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部