您现在的位置:首页 > 教案模板 > 正文

教案模板2(LaTeX对Word和LaTeX的初次模板使用过程中首次用到 )(2)

2021-09-08 05:56 网络整理 教案网

表格的具体用途请参考其他详细资料。用LaTeX写简单的表格比较容易,但是大的表格比较麻烦,所以可以用LaTeX插入表格,使用网页在线转换器()将可视化表格转换成LaTeX代码,复制代码到对应位置,非常好用。

教资面试教案教案模板幼儿园_教案模板2_试讲教案模板

\begin{table}[!t]
	\renewcommand{\arraystretch}{1.3}
	\caption{show tabel.}%标注该表格,用于在文章内引用
	\label{table1}
	\centering
	\begin{tabular}{ccccc}
		\toprule	
		A & \multicolumn{3}{c}{B}  \\
		\cmidrule{2-4}
		& C & C2 & 3 \\	
		\midrule
		a1 & 0.4 & 0.9 & 0.8 \\
		a2 & 0.1 & 0.1& 0.9 \\
		a3 & 0.5 & 0.0& 0.5 \\
		a4 & 0.7 & 0.7& 0.7 \\
		
		\bottomrule
	\end{tabular}
\end{table}

公式的具体使用请参考其他详细资料。

%行内公式,用$$包围
The $A_{1}=B+C(\dfrac{a}{a\log b})$President has told members of his team that starting a new conflict would amount to breaking his campaign promise to wind do.
%行间公式,公式文字内不好放的时候
\begin{equation}
A_{1}=B+C(\dfrac{a}{a\log b})
\end{equation}
o breaking his
%行间多行公式共用一个编号
\begin{equation}
\begin{aligned}	
A_{1}=B+C(\dfrac{a}{a\log b})\\
A_{1}=B+C(\dfrac{a}{a\log b})
\end{aligned}
\end{equation}
%一行太长写不下,一般在等号或加号出换行
o breaking his
\begin{multline}
A_{1}=B+C(\dfrac{a}{a\log b})+C(\dfrac{a}{a\log b})-C(\dfrac{a}{a\log b})+C(\dfrac{a}{a\log b})\\
=C(\dfrac{a}{a\log b})+C(\dfrac{a}{a\log b})+C(\dfrac{a}{a\log b})\\
=C(\dfrac{a}{a\log b})
\end{multline}

结合BibTeX自动导入引用引用,先在test_main.tex所在的文件下存放一个BibTeX文件,命名为reference,即reference.bib。您可以从 Google Scholar 中导入参考文章的 BibTXT 并将其复制到参考。以下方式自动加载,然后可以直接引用参考文献,使用\cite{XX},XX为.bib文件中文章后的内容教案模板2,如下图

\bibliographystyle{IEEEtran}%这里选择的是IEEEtran,还可以选择不同的分风格
\bibliography{reference}%导入BibTeX.bib,然后就可以直接引用参考文献了,用\cite{XX},XX是.bib文件中article后面的内容,如上所示
%引用参考文献
members of\cite{olson1999nutrition} his team that starting a new conflict would amount to breaking his campaign promise\cite{townsend2001food} to winstarting a new conflict would amount to breaking his\cite{olson1999nutrition}.

在编译test_main.tex文件的过程中,会产生一些中间文件,有时改变引用会报错。删除这些中间文件并重新编译。

教案网123