LaTex基础

网上搜到的名为《LaTex新人教程,30分钟从完全陌生到基本入门》,实践了一下。

安装CTEX后,打开WinEdt进行编辑,保存时选UTF-8,编译时选XeLaTex。

1,基本

\documentclass{article}
\begin{document}
 hello, world
 \end{document}

2,标题、作者和注释

\documentclass{article}
    \author{My Name}
    \title{The Title}
\begin{document}
    \maketitle
    hello, world % This is comment
\end{document}

3,章节和段落

\documentclass{article}
  \title{Hello World}
\begin{document}
  \maketitle
  \section{Hello China} China is in East Asia.
    \subsection{Hello Beijing} Beijing is the capital of China.
      \subsubsection{Hello Dongcheng District}
        \paragraph{Tian‘anmen Square}is in the center of Beijing
          \subparagraph{Chairman Mao} is in the center of Tian‘anmen Square
      \subsection{Hello Guangzhou}
        \paragraph{Sun Yat-sen University} is the best university in Guangzhou.
\end{document}

4,目录

\documentclass{article}
\begin{document}
  \tableofcontents
  \section{Hello China} China is in East Asia.
    \subsection{Hello Beijing} Beijing is the capital of China.
      \subsubsection{Hello Dongcheng District}
        \paragraph{Hello Tian‘anmen Square}is in the center of Beijing
          \subparagraph{Hello Chairman Mao} is in the center of Tian‘anmen Square
\end{document}

5,换行

\documentclass{article}
\begin{document}
  Beijing is
  the capital
  of China.

New York is

the capital

of America.

Amsterdam is \\ the capital \\
  of Netherlands.
\end{document}

6,数学公式

\documentclass{article}
  \usepackage{amsmath}
  \usepackage{amssymb}
\begin{document}
  The Newton‘s second law is F=ma.

The Newton‘s second law is $F=ma$.

The Newton‘s second law is
  $$F=ma$$

The Newton‘s second law is
  \[F=ma\]

Greek Letters $\eta$ and $\mu$

Fraction $\frac{a}{b}$

Power $a^b$

Subscript $a_b$

Derivate $\frac{\partial y}{\partial t} $

Vector $\vec{n}$

Bold $\mathbf{n}$

To time differential $\dot{F}$

Matrix (lcr here means left, center or right for each column)
  \[
    \left[
      \begin{array}{lcr}
        a1 & b22 & c333 \\
        d444 & e555555 & f6
      \end{array}
    \right]
  \]

Equations(here \& is the symbol for aligning different rows)
\begin{align}
  a+b&=c\\
  d&=e+f+g
\end{align}

\[
  \left\{
    \begin{aligned}
      &a+b=c\\
      &d=e+f+g
    \end{aligned}
  \right.
\]

\end{document}

7,插入图片

\documentclass{article}
  \usepackage{graphicx}
\begin{document}
  \includegraphics[width=4.00in,height=3.00in]{figure1.jpg}
\end{document}

8,简单表格

\documentclass{article}
\begin{document}
  \begin{tabular}{|c|c|}
    aaa & b \\
    c & ddddd\\
  \end{tabular}

\begin{tabular}{|l|r|}
    \hline
    aaaa & b \\
    \hline
    c & ddddd\\
    \hline
  \end{tabular}

\begin{center}
    \begin{tabular}{|c|c|}
      \hline
      a & b \\ \hline
      c & d\\
      \hline
    \end{tabular}
  \end{center}
\end{document}

9,中文支持

\documentclass[UTF8]{ctexart}
\begin{document}
你好,世界
\end{document}

时间: 2024-09-30 15:10:41

LaTex基础的相关文章

LaTeX基础一:安装与基本操作

一.安装 1.首先下载texlive2015.iso文件.再在解压的镜像文件中运行install-tl-advanced.bat批处理命令.注意要关闭杀毒软件,否则可能会出现错误. 2.可以修改一下安装路径,只要更改一个,其他也随之更改: 3.把不要安装的语言包去掉,还有一个陈旧的编辑器,后面会安装一个第三方编辑器: 4.此时就可以安装了,经过漫长的等待过程完成,可以在cmd中分别输入三条命令测试成功与否: 1 tex -v 1 latex -v 1 xelatex -v 5.更新latex,经

【latex】latex基础

文档边距.间距调整 边距调整 \usepackage{geometry} %设置页边距的宏包 \geometry{left=3.0cm,right=2.5cm,top=2.5cm,bottom=2.5cm} %设置页边距 间距调整 \usepackage{setspace} %使用间距宏包 \begin{spacing}{2.0} text..... \end{spacing} 整段左右间距调整(左侧2cm,右侧1cm) \usepackage{changepage} \begin{adjust

LaTeX基础二:写文章时基本语句分析

代码如下: 1 %导言区,这个百分号表示注释 2 \documentclass{article} %有book,report,letter等格式. 3 4 \title{It Is My First Document} 5 \author{Shawn Chow} 6 \date{\today} 7 8 %正文区(文稿区) 9 \begin{document} 10 \maketitle %这里写这个可以添加标题. 11 Hello World !%下面空行表示换行. 12 13 %here is

LaTeX基础四:字体字号设置

代码如下: 1 %导言区 2 \documentclass[10pt]{article} %确定normalsize大小,为可选参数,在中括号内,此为10磅,只有10,11,12磅三个选项. 3 4 \usepackage{ctex} 5 6 %自定义字体 7 \newcommand{\myfont}{\textit{\textbf{\textsf{Fancy Text}}}} 8 9 %文稿区 10 \begin{document} 11 %字体族设置(罗马字体.无衬线字体.打印机字体) 12

Latex 学习

Latex 学习 @(05.2 Latex)[latex][基础教程] 这篇文章是关于latex基础教程.pdf的一个总结. 基本知识 基础 1. 空格 多个空格会被视为一个空格 单个回车会被视为一个空格 段落开头的空格会被忽略 用两个回车来结束一个段落 2. 特殊字符 以上是Latex的保留字符,不能直接使用.要加反斜杠\ 3. Latex命令 以一反斜线 \ 开始,命令名后的空格符.数字或其它非字母字符标志该命令的结束. Latex命令会忽略它后面的空格(因为空格被认为是结束命令),在命令后

Latex中的表格总结

导言 好久没用Latex了,所以一用的时候就出问题了,在不赶deadline的时候先总结好,用的时候直接ctrl+c,要是你也需要,欢迎参考,不针对没有Latex基础的小伙伴,所以不打算写的很细致. 这篇是持续更新的 1.带小数点的表格怎么做 \documentclass{article} \begin{document} \begin{tabular}{|c|[email protected]{.}l|} \hline income & 12345&60 \\ \hline spendi

TEXshade教程- 多重比对着色软件包

多重比对着色软件包 TEXshade 图解安装教程 [絮语]: TEXshade 是 Latex 的一个宏包,可以对 MSF或 ALN 格式的多重比对文件以不同的方式进行着色美化,并可以对重要的位置和区域作出标记.用 TEXshade软件包能做出来的多重比对可视化效果,常常让人耳目一新,当然也是投高IF期刊所必须的. 如果有 LaTeX 基础,TEXshade 可能只是小菜一碟:但如果没有任何的Latex基础,也不担心,看完教程相信也会收获,先上张效果图养养眼. 准备工作: (1)中文的 LaT

java web 开发三剑客 -------电子书

Internet,人们通常称为因特网,是当今世界上覆盖面最大和应用最广泛的网络.根据英语构词法,Internet是Inter + net,Inter-作为前缀在英语中表示“在一起,交互”,由此可知Internet的目的是让各个net交互.所以,Internet实质上是将世界上各个国家.各个网络运营商的多个网络相互连接构成的一个全球范围内的统一网,使各个网络之间能够相互到达.各个国家和运营商构建网络采用的底层技术和实现可能各不相同,但只要采用统一的上层协议(TCP/IP)就可以通过Internet

【LaTeX】E喵的LaTeX新手入门教程(2)基础排版

换了块硬盘折腾了好久..联想的驱动真坑爹.前情回顾[LaTeX]E喵的LaTeX新手入门教程(1)准备篇文档框架嗯昨天我们已经编写了一个最基本的文档,其内容是这样的:\documentclass{article}\begin{document}XXX is a SB.\end{document}这个文档呢其实是分为两部分的:一部分是\begin{document}之前的那部分也就是第一行,这一部分我们称之为导言区.导言区的内容可以不只一行,它的作用是完成文档的基础设定.比如在这个文档中,我们使用