Latex排版——表格插入

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Latex排版——表格插入

标签:

分类:办公与排版

latex

tabel

杂谈

%看以下代码:

\documentclass{article}

\begin{document}

Structural Health Monitoring (SHM) is a fast-developing, interdisciplinary field of research due to the fact that SHM is heavily stimulated by the engineering problems of maintenance and safe operation of technical infrastructure.

$$\sum_{i=1}^{n}$$

The core problem of SHM is the damage identification, which can be divided into five levels

%表格

\begin{table}[tbp]

\centering % 表居中

\begin{tabular}{lccc} % {lccc} 表示各列元素对齐方式,left-l,right-r,center-c

\hline

Player &Round 1 &Round 2 &Round 3\\ \hline % \hline 在此行下面画一横线

Dave &89 &91 &88\\ % \\ 表示重新开始一行

Don &102 &105 &99\\ % & 表示列的分隔线

Todd &153 &256 &357\\ \hline

\end{tabular}

\caption{Through three rounds at the Muni.}

\end{table}

%结束

1) detection of damage existence; 2) localization of damage; 3) identification of damage type; 4) quantification of damage extent; and 5) damage prognosis.

\end{document}

%编译后如下格式

%将红色代码tbp改为htbp, 编译后显示为

相关文档
最新文档