Latex点滴

本文介绍了LaTeX的安装步骤及使用方法,包括利用CTeX进行安装、使用Winedt作为编辑器以及如何通过beamer插件制作演示文稿。提供了一个简单的演示文稿示例,帮助初学者快速上手。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、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} 

就这么简单,大家看着在这个基础上吗扩展就可以了。。。。。

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值