一、Latex的安装
这个主要从Ctex的主页下载中文的套装就可以了。。。安装完成后前台的Winedt需要注册,方法有两种:1是在网上找注册码(很容易找到)2是在option选项中修改exit的退出命令,也很简单网上有介绍。即使不注册到期后问题也不大,只是每次回弹出提示注册的提示框。
二、Latex初体验
可以在投稿网站上面下载一个投稿的模板、比如IEEE Trans、SIGMOD的等。打开tex结尾的文件就可以看到别人做好的模板,然后按照对应的部分填入内容即可。这个上手很快,需要在实践中结合google不断的摸索
三、Latex下面做slides
开始在网上查找做slides的方法,介绍的通用方法就是用beamer,网上说了一大堆的安装方法,下载什么、更新什么的,全是垃圾,浪费时间!!!!!!
ctex新的套件中已经自动包含beamer这个插件了。可以直接应用。。。下面把我做的一个slides的源码贴出来、方便大家很容易上手
\documentclass{beamer}
\usepackage{beamerthemesplit}
\title{The title of this slides}
\author{My name}
\institute{My organization}
\date{\today}
\begin{document}
% Creates title page of slide show using above information
\begin{frame}
\titlepage
\end{frame}
\note{Talk for 30 minutes} % Add notes to yourself that will be displayed when
% typeset with the notes or notesonly class options
\section[Outline]{}
% Creates table of contents slide incorporating all \section and \subsection commands
\begin{frame}
\tableofcontents
\end{frame}
\section{Introduction}
\begin{frame}
\frametitle{Simple slide with three points shown all at once} % Insert frame title between curly braces
\begin{itemize}
\item Point 1
\item Point 2
\item Point 3
\end{itemize}
\end{frame}
\section{Problem Definition}
\begin{frame}
\frametitle{Simple slide for Problem Definition} % Insert frame title between curly braces
\begin{itemize}
\item Point 1
\item Point 2
\item Point 3
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Simple slide for Problem Definition 2} % Insert frame title between curly braces
\begin{itemize}
\item Point 1
\item Point 2
\item Point 3
\end{itemize}
\end{frame}
\section{Solution}
\begin{frame}
\frametitle{Simple slide for solution} % Insert frame title between curly braces
\begin{itemize}
\item Point 1
\item Point 2
\item Point 3
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Simple slide for solution} % Insert frame title between curly braces
\begin{itemize}
\item Point 1
\item Point 2
\item Point 3
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Slide with two columns: items and a graphic} % Insert frame title between curly braces
\begin{columns}[c]
\column{2in} % slides are 3in high by 5in wide
\begin{itemize}
\item<1-> First item
\item<2-> Second item
\item<3-> ...
\end{itemize}
\column{2in}
\framebox{Insert graphic here % e.g. \includegraphics[height=2.65in]{graphic}
}
\end{columns}
\end{frame}
\end{document}