当前位置: 首页 > 工具软件 > latex-action > 使用案例 >

Latex 基本应用

束高雅
2023-12-01

1、自动关联参考文献和引用 

\usepackage{hyperref}
\hypersetup{hypertex=true,
            colorlinks=true,
            linkcolor=blue,
            anchorcolor=blue,
            citecolor=blue}

2、换行

\\

3、引用参考文献:

\cite{}

4、首行缩进

\usepackage{indentfirst}

\indent{}

5、插入表格:

\begin{table}
\centering

\begin{tabular}{lccccc}%l=left, r=right,c=center分别代表左对齐,右对齐和居中,字母的个数代表列数
\hline
Databases &Ref Images &Dist Images &Dist Types &Score Type &Score Range  \\
\hline

LIVE    &29 &779 &5 &DMOS &[0,100] \\
 \hline
TID2013 &30 &3000 &24 &MOS &[0,9] \\ 
 \hline
CSIQ &25 &866 &6 &DMOS &[0,1] \\ 
 \hline
LIVEC &N.A. &1162 &Numerous &MOS &[0,100] \\ 
 \hline 
\end{tabular}
\caption{Parameter setting in simul
 类似资料: