The LaTeX Project logoLaTeX 项目

LaTeX 简介

LaTeX,发音为 «Lah-tech» 或 «Lay-tech» (与 «blech» 或 «Bertolt Brecht» 押韵),是一个用于高质量排版的文档准备系统。它最常用于中大型技术或科学文档,但几乎可以用于任何形式的出版。

LaTeX 不是文字处理器!相反,LaTeX 鼓励作者不要过多担心文档的外观,而是专注于获得正确的内容。例如,考虑以下文档

Cartesian closed categories and the price of eggs
Jane Doe
September 1994

Hello world!

为了在大多数排版或文字处理系统中生成此文档,作者必须决定使用哪种布局,因此会选择(例如)标题为 18pt Times Roman,名称为 12pt Times Italic,等等。这有两个结果:作者将时间浪费在设计上;以及大量设计糟糕的文档!

LaTeX 基于这样的理念:最好将文档设计留给文档设计师,让作者专注于编写文档。因此,在 LaTeX 中,您将输入此文档为

\documentclass{article}
\title{Cartesian closed categories and the price of eggs}
\author{Jane Doe}
\date{September 1994}
\begin{document}
   \maketitle
   Hello world!
\end{document}

或者,用英语

LaTeX 功能