我们此刻miktex官网上下载LaTeX,然后再下载一个安装包,再安装到电脑上。
打开WinEdt,成立一个新文档,打开WinEdt,将以下内容复制进入文档(B区)中,保留。\documentclass{article} \begin{document} new paper test
\end{document},然后在图中红圈圈D处点击编译 ,生当作RDF,一个简单的文档就排好版了。
题目papertitle、作者authorname和注释(注释内容前加%)
\documentclass{article} \author{authorname} \title{papertitle} \begin{document} \maketitle new paper test% This is comment \end{document}
编译,RDF结果如下图
章节、段落
\documentclass{article}
\author{authorname}
\title{papertitle} \begin{document} \maketitle \section{section1} This is section1. \subsection{subsection1} This is subsection1. \subsubsection{subsubsection1} \paragraph{paragraph1}This is section1 subsection1 subsubsection1 paragraph1
\subparagraph{subparagraph1} This is section1 subsection1 subsubsection1 paragraph1 subparagraph1 \subsection{subsection2} \paragraph{paragraph1}This is subsection2 paragraph1
\end{document}
编译结果如下图
插手目次
\documentclass{article}
\author{authorname}
\title{papertitle}
\begin{document}
\tableofcontents
\section{section1} This is section1.
\subsection{subsection1} This is subsection1.
\subsubsection{subsubsection1}
\paragraph{paragraph1}This is section1 subsection1 subsubsection1 paragraph1
\subparagraph{subparagraph1} This is section1 subsection1 subsubsection1 paragraph1 subparagraph1 \subsection{subsection2}
\paragraph{paragraph1}This is subsection2 paragraph1
\end{document}
插入图片
\documentclass{article} \usepackage{graphicx} \begin{document} \includegraphics[width=4.00in,height=3.00in]{figure.eps} \end{document}
注重:图片的格局是eps格局
0 篇文章
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!