Latex安装、测试及ppt制作设置

Latex安装步骤:


1) 安装WinEdt7.0,并注册(网上下载,安装在C盘还是D盘均可)
2) 安装GsView4.9(浏览图片eps,ps软件),并注册 (建议去公司主页下载,安装在C盘还是D盘均可)

3) 安装Ghost Script9.07 (建议去公司主页下载,安装在C盘还是D盘均可)

4)安装Adobe Acrobat7.0

5) 安装MikTeX2.8(建议去公司主页下载,安装在C盘还是D盘均可,安装路径与上面三种软件一样,可以自己设置,没有特殊要求)

6)安装中文插件(可选)

测试:

1)打开WinEdt7.0,新建一个text.tex文件

\documentclass{article}
\begin{document}
Hello, latex world!
\end{document}

运行,即可查看结果。

2)或者在MikTeX2.8中进行测试。


制作PPT文档:

说明:用Latex制作ppt,需要借助于beamer。由于latex的实现版本太多了,不同的tex ppt模板会有冲突,提示找不到这样的文件(路径不对),或者没有那样的文件(需要下载)。最好在google上查找,百度没搜到解决的经验。所以就是

1)下载beamer,pgf,xcolor,
2)latex目录:D:\Program Files\MiKTeX 2.9\tex\latex\beamer。把beamer文件夹放在latex文件下面。

3)D:\Program Files\MiKTeX 2.9\tex\latex\pgf。把下载的pgf文件夹下里面tex\latex\pgf里边的内容拷贝到latex下面。

4)D:\Program Files\MiKTeX 2.9\tex\latex\xcolor。把xcolor文件夹放在latex下面。

5)D:\Program Files\MiKTeX 2.9\tex\latex\ms。把ms文件下放在latex下面。ms文件夹下面主要文件是everyshi.sty

6)测试。给一个测试文档。

\documentclass[hyperref={pdfpagelabels=false}]{beamer}
% By  using hyperref={pdfpagelabels=false} you get rid off:
% Package hyperref Warning: Option `pdfpagelabels' is turned off
% (hyperref)                because \thepage is undefined.
% Hyperref stopped early
%
\usepackage{lmodern}
% Using lmondern and you get rid off this:
% LaTeX Font Warning: Font shape `OT1/cmss/m/n' in size <4> not available
% (Font)              size <5> substituted on input line 22.
% LaTeX Font Warning: Size substitutions with differences
% (Font)              up to 1.0pt have occurred.
%
% If \titel{$B!D(B} \author{$B!D(B} come after \begin{document}
% you get the following warnig:
% Package hyperref Warning: Option `pdfauthor' has already been used,
% (hyperref) ...
% So it is here before \begin{document}
\title{Beamer Class a little nicer 2}
\author{Sascha Frank}
\date{\today}
% additional usepackage{beamerthemeshadow} is used
\usepackage{beamerthemeshadow}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Table of contents}
\tableofcontents
\end{frame}
\section{Section no.1}
\begin{frame}
\frametitle{frame title}
Each frame should have a title.
\end{frame}
\subsection{Subsection no.1.1  }
\begin{frame}
Without title somethink is missing.
\end{frame}
\section{Section no. 2}
\subsection{Lists I}
\begin{frame}
\frametitle{unnumbered lists}
\begin{itemize}
\item keyword
\item still another keyword
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{lists with single pause}
\begin{itemize}
\item keyword  \pause
\item still another keyword
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{lists with pause}
\begin{itemize}[<+->]
\item keyword
\item still another keyword
\item a third one
\end{itemize}
\end{frame}
\subsection{Lists II}
\begin{frame}
\frametitle{numbered lists}
\begin{enumerate}
\item keyword
\item still another keyword
\end{enumerate}
\end{frame}
\begin{frame}
\frametitle{numbered lists with single pause}
\begin{enumerate}
\item keyword  \pause
\item still another keyword
\end{enumerate}
\end{frame}
\begin{frame}
\frametitle{numbered lists with pause}
\begin{itemize}[<+->]
\item keyword
\item still another keyword
\item a third one
\end{itemize}
\end{frame}
\section{Section no.3}
\subsection{Tables}
\begin{frame}
\frametitle{Tables}
\begin{tabular}{|l|c|r|p{1.5 cm }|}
\hline
left & centers & right & width \\
l & C & r & p \\
\hline
\end{tabular}
\end{frame}
\begin{frame}
\frametitle{Tables with pause}
\begin{tabular}{c c c}
A & B & C \\
\pause
1 & 2 & 3 \\
\pause
A & B & C \\
\end{tabular}
\end{frame}
\section{Section no. 4}
\subsection{blocs}
\begin{frame}
\frametitle{blocs}
\begin{block}{title of the bloc}
bloc text
\end{block}
\begin{exampleblock}{title of the bloc}
bloc text
\end{exampleblock}
\begin{alertblock}{title of the bloc}
bloc text
\end{alertblock}
\end{frame}
\end{document}
根据测试的错误提示,下载缺失的文件放在相应的目录下面。

测试之前需要在WinEdt中刷新一下,命令如下图。(有时候很奇怪,刷新完了需要重启一下WinEdt)

--------------------------------------------------------------------------------
图片转换小软件:
1) All2EPS_Batch_V1.0.exe
2) wmf2eps.exe

与Latex兼容的小软件

1) JabRef-2.3.1-Setup (文献管理工具,类似Word中的Endnote)
2) jxpiinstall(安装java环境)
3)Excel2Latex宏,将excel中的表格转化为LaTex的格式。(在excel中运行宏“Excel2Latex”可以轻易的将excel中的表格转化为tex的格式。注意,一般需要先将“工具-宏-安全性”中的级别调低才能运行这个宏)。

(上面两段摘自http://blog.sina.com.cn/s/blog_5b29caf70100jnzo.html)


以下是关于如何制作 OpenCV PPT 的步骤: 1.了解主题和目的:在开始制作 PPT 之前,应该知道 PPT 的主题、目的和受众。确定这些方面,可以有助于确定所需的内容和组织方式。对于 OpenCV PPT,主题可能包括 OpenCV 应用、算法和库。目的可能是向开发人员、学生或科学家展示 OpenCV 技术。 2.选择模板:选择一个适合自己的 PPT 模板,以便将有关 OpenCV 的信息呈现给受众。可以使用微软 PowerPoint 或在线工具如 Canva 来为 PPT 模板添加自定义设计和功能。 3.创建幻灯片:创建幻灯片时,请确保以下几个方面: * 一开始添加标题幻灯片 * 插入具有讨论性的内容幻灯片(如要讨论 OpenCV 库的功能,请包括代码片段或算法示例) * 用照片和图形添加例子,并不断保持一致的外观和感觉。 4.排版和格式:要让 PPT 看起来专业且易于阅读,请按以下方式进行排版和格式: * 选择标准字体和颜色,以便整个 PPT 的外观和感觉一致。 * 字体大小应该适当:标题通常比文本大很多,而文本应该是与读者轻松交流的理想大小。 * 确保使用有序项目符号或数字,以便任何人都可以跟上 PPT 上的内容。 * 保持幻灯片干净,简单和整齐。在幻灯片中使用合适的间距,与某些元素应该的方向冲突的元素需要放置在不同的幻灯片上,等等。 5.制作公式:如果要显示数学公式,则可以使用 LaTex 或 MathML 式的插件,此操作在 PowerPoint 中可能需要插件。 6.附加注释:要解释某个主题或说明幻灯片中的重要元素,请在注释栏中添加附加信息。 7.测试和编辑幻灯片:在完成之前,请进行一次幻灯片演示,以便测试内容和格式的所有元素是否正确。可以更改字体大小,调整视觉效果,删除冗余的幻灯片和大小调整图片。使用 PowerPoint 自带的演示功能,修改和测试PPT。 8.准备演示:完成幻灯片后,即可开始演示。在幻灯片放映时,可以添加动画、音频或视频等其他元素,以更好地展现 OpenCV 内容。 9.分享 PPT:分享 PPT,可以分享到个人博客或社交媒体平台等,使用户可以轻松访问 OpenCV 内容。 这些是 OpenCV PPT 制作步骤的概要,需要根据实际需求,添加或调整其他元素。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值