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

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

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

最近在格式化文档的过程中第一次使用LaTeX,所以在此记录下这个过程,希望对第一次使用的同学有所帮助。

首先说一下对Word和LaTeX的整体感受:Word在起草阶段用起来比较方便好用,可以用来完成文档的编辑,但没那么容易如果最终将其排版为某种固定格式,则可以像 LaTeX 一样使用和方便。 ,因为在使用Word模板的时候,经常会遇到图片和表格乱跑,留下大量空白,公式显示问题等,有些格式没有调整到想要的样子,而且对于不同的模板,你必须重新-再次调整,这次就体现了LaTeX的好处,虽然LaTeX一开始不像Word那么简单明了,但是只要你花点时间把在LaTeX中编辑文档的大体流程理顺,你就会发现编辑使用LaTeX的文档几乎不需要花时间调整格式,只需要在框架中填写内容即可,而对于不同的格式模板,只需要进行很小的样式改动,方便复用。因此,本教程是基于我自己的经验。一起来看看LaTeX的第一个模板使用过程。

LaTeX 安装

网上有很多安装教程。我选择了texlive+texstudio。安装指南参见windows下的latex:texlive2018和texstudio。

Texstudio的语言检查功能设置:为TexStudio配置拼写和语法检查LanguageTool功能

2020.4.10 更新

Texlive 2019可以安装,可以从清华镜像源下载。速度很快。参考LaTeX学习:Texlive 2019和TeX studio安装使用。文档编辑器textstudio也可以使用vscode,参考VS CODE+LATEX完整方案,不过texstudio有向导,比如插入公式、图片等,这方面比较方便。

vscode 可以稍微设置一下:

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

在seetings.json中写入如下配置,注意逗号

    ,
    "editor.wordWrap": "on",
    "latex-workshop.latex.autoClean.run": "onBuilt",
    "latex-workshop.latex.autoBuild.run": "never",
    "latex-workshop.showContextMenu":true

在代码对应位置的光标处右击SyncTeX跳转到编译后的PDF文件的对应位置。

Ctrl+点击编译好的PDF跳转到对应的代码。

到目前为止我已经测试了这些基本功能,但我还没有弄清楚其他的。

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

LaTeX 模板应用

一般来说,LaTeX 主要用于论文投稿和书籍排版。提交论文时,有人会提供模板并要求您按要求排版。这里我选择IEEEtrans模板,针对英文文档。 , 不含中文,可在(WIN或MAC LaTeX2e Transactions Style File)下载或解压。

百度云链接:链接:

提取码:vh3b

模板安装

将CLS文件IEEEtran放在texlive安装路径~\texmf-local\tex\latex下解压后的文件中,在cmd中输入texhash刷新数据库。

模板使用

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

创建自己的test文件夹latex_test,将解压后的文件夹中的bare_jrnl复制到latex_test并重命名为test_main,其中bare_jrnl是IEEEtransactions提交使用的模板,将IEEEtran复制到这个文件中。

在texlive中打开test_main教案模板2,一些通用的框架已经设置好了,只需替换相应的文本,比如title、summary、body,texlive中的两个绿色三角按钮分别是运行和显示FDF和编译。 IEEEtrans 官方英文教程链接:

提取码:i9nc

本教程的源文件存储在链接中:

提取码:ie3s

开始设置,包括文档类型、字体大小、使用的工具包等

\documentclass[10pt,journal,final]{IEEEtran}%我们使用的是IEEEtran风格的外部模板,还有一些内置的article等,方括号的是参数,包括字号,期刊类型,所用模板是双列
%接下来我们在图片、表格、公式等的编辑中,需要用usepackage导入一些package,就类似于python或C++中包的import和include吧。
\usepackage{multirow} %关于表格
\usepackage{booktabs}
\usepackage{makecell}
\usepackage{cite}%参考文献
\usepackage{graphicx}%图片
\graphicspath{{./figures/}}%说明待加载的图片的路径,在后期图片加载的时候不用再写路径,直接用图片名称
  
\usepackage{amsmath}%公式
\interdisplaylinepenalty=2500
% 子图设置
\ifCLASSOPTIONcompsoc
\usepackage[caption=false,font=normalsize,labelfont=sf,textfont=sf]{subfig}
\else
\usepackage[caption=false,font=footnotesize]{subfig}
\fi
% correct bad hyphenation here
\hyphenation{op-tical net-works semi-conduc-tor}

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

正文开始,正文内容包含在

\begin{document} ...  \end{document}

,并在相应章节填写相应正文,如摘要、引言等。Section、subsection、subsubsection分别为一、二级、三级标题,并展示list的应用,如下。

\begin{document}
%正文开始,把文字填到相应的部分
\title{learning LaTeX}
\author{Hong~Xiao  }
\maketitle
\begin{abstract}
As recently as last week, Trump was calling outside advisers to complain about Bolton, people familiar with the conversations said. 
\end{abstract}
\begin{IEEEkeywords}
latex
\end{IEEEkeywords}
\IEEEpeerreviewmaketitle
\section{Primary title}%一级标题
Washington (CNN)President Donald Trump has become irritated at an emerging impression his hawkish national security advisers are marching him closer to war with Iran despite his isolationist tendencies, according to people familiar with the matter.
%另起一段,回车,空一行
Instead, Trump is signaling his intent to speak with the Iranians as tensions rise in the Persian Gulf, and his national security team has taken steps they hope could facilitate a new diplomatic opening.
\subsection{The secondary title}%二级标题
The likelihood of such an opening appears slim. But Trump has raised concern with the heightened rhetoric, believing a large-scale military intervention with Iran would be devastating to him politically, people familiar with the situation said.
\subsubsection{The secondary title}%三级标题
 The President has told members of his team that starting a new conflict would amount to breaking his campaign promise to wind down foreign entanglements. And he's chafed at suggestions his aides, led by national security adviser John Bolton, are somehow leading him to war.
\subsection{show list}%列表展示
\begin{enumerate}[\IEEEsetlabelwidth{4)}]%4个条目
	\item AAAAAA.
	\item BBBBBBBBBBBB. 
	\item CCCCCCCCCC.
	\item DDDDDDDDDDDDDDDDDDDDDDD.
	
\end{enumerate}

写入图片路径后,根据名称加载,图片保存在当前目录的figures文件夹中。无论图片在模板中的位置如何,都会根据文字和图片大小自动调整。标签仅用于文中图片的引用,使用Fig.\ref{XX},其中XX为标签名称,fig1,fig2,fig3,在引用中,如Fig.和Tabel等词。需要手动添加,而\ref{XX}只是一个图片编号,按照在.tex文件中出现的顺序自动编号,所以不用担心改变图片的位置并更改数字,它会根据模板样式自动选择阿拉伯数字或罗马数字。标签会显示在texstudio的标签中,如图。

%图片展示,在模板中不用管图片的位置,会自动根据文字以及图片大小调整
%figure是双栏的图片排版
\begin{figure}[!t]
	\centering %居中
	\includegraphics[scale=1]{2.jpg}%图片大小及加载的图片名称			
	\caption{show single picture.}%图片标题
	\label{fig1}%标注该图片,用于在文章内引用
\end{figure} 
%figure*是单栏的图片排版,用于大图片,双栏中放不下的
\begin{figure*}[!t]
	\centering
	\includegraphics[width=6in]{3.jpg}%
	\caption{Sample images of highway test dataset.}
	\label{fig2}
\end{figure*}
%多子图的情况
\begin{figure*}[!t]
	\centering
	\subfloat[first]{\includegraphics[width=4in]{2.jpg}
	}
	\hfil
	\subfloat[second]{\includegraphics[width=3in]{2.jpg}
	}
	\hfil\hfil
	\subfloat[third]{\includegraphics[width=5in]{2.jpg}
	}
	\hfil
	\subfloat[ fourth]{\includegraphics[width=2in]{2.jpg}
	}
	
	\caption{multiple features}
	\label{fig3}
\end{figure*}