1

How am I able to format TeX without using the command? I know I can use \TeX and it'll do it automatically but I'd like to do it manually for other stuff.

1 Answers1

5

If you put

\show\TeX

into a LaTeX document it will stop and show on the terminal

> \TeX=macro:
 ->T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\@.

(The definition in plain TeX doesn't have the \@)

so if for some reason you don't want to type \TeX you can type

T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\@

instead.

David Carlisle
  • 757,742