我偶然发现了拖船教程,并写下打印简单文档的第一个基本示例。
我的 LaTeX 文件是:
mt4k@laptop:$ cat myfile.tex
\documentclass{article}
\begin{document}
This is my \emph{first} document prepared in \Latex.
\end{document}
我收到以下消息\Latex
:
mtk4@laptop:$ latex myfile.tex
This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian)
entering extended mode
(./myfile.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, loaded.
(/usr/share/texmf-texlive/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/size10.clo)) (./myfile.aux)
! Undefined control sequence.
l.3 ...my \emph{first} document prepared in \Latex
.
?
在输出的 pdf 中,Latex
单词已被省略。有人能告诉我如何以这种方式打印单词吗?(方式类似于上面链接中的 pdf 中打印单词“LATEX”)
如果您需要更多信息,请告诉我。此外,我搜索了 SO 和此网站,但找不到任何类似的问题,如果我错过了,请指出。
答案1
您应该使用\LaTeX
而不是\Latex
。
\documentclass{article}
\begin{document}
This is my \emph{first} document prepared in \LaTeX.
\end{document}