我們此刻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 篇文章
如果覺得我的文章對您有用,請隨意打賞。你的支持將鼓勵我繼續創作!