我知道如何使用\LaTeX
来获得 LaTex 一词的花哨版本;我见过 BibTeX 的类似拼写版本,但\BibTeX
不起作用。我尝试了几种大写变体,但没有找到一种可行的。
搜索与 BibTeX 相关的任何内容时的问题在于,关于如何使用它的文章太多了,以至于这个特定问题没有出现在查询中。
它應該有可能去做这个:
答案1
该类ltugboat
定义\BibTeX
类似于
\DeclareRobustCommand{\BibTeX}{{\normalfont\scshape Bib\kern-0.08em \TeX}}
由您决定是否允许徽标遵循当前字体属性,但存在无法获得小写“Bib”的风险。
btxdoc.tex
(Oren Patashnik 手册)中的定义是
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
以现代形式来说,
\DeclareRobustCommand{\BibTeX}{%
{\normalfont B\kern-.05em{\scshape i\kern-.025em b}\kern-.08em \TeX}%
}
以下是两个定义的输出(按相同顺序)
答案2
对于计算机/拉丁现代罗马(衬线)字体,我对以下定义有很好的经验:
\newcommand{\BibTeX}{\textsc{B\kern-0.1emi\kern-0.017emb}\kern-0.15em\TeX}
\documentclass{article}
\newcommand{\BibTeX}{\textsc{B\kern-0.1emi\kern-0.017emb}\kern-0.15em\TeX}
\begin{document}
\obeylines % just for this example
\tiny\BibTeX
\scriptsize\BibTeX
\footnotesize\BibTeX
\small\BibTeX
\normalsize\BibTeX
\large\BibTeX
\Large\BibTeX
\huge\BibTeX
\Huge\BibTeX
\end{document}