zoukankan      html  css  js  c++  java
  • Letex

    LaTeX软件的安装和使用

    在MikTeX的官网下载免费的MikTeX编译包并安装。WinEdt(收费)TexMaker(免费)

    打开WinEdt,建立一个新文档

    (1)标题papertitle、作者authorname和注释(注释内容前加%)

    documentclass{article}   author{authorname}   itle{papertitle} egin{document}   maketitle  new paper test% This is comment end{document} 

    (2)章节、段落

    documentclass{article} 

    author{authorname}  

    itle{papertitle} egin{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} 

    (3)加入目录

    documentclass{article}

    author{authorname}

      itle{papertitle}

    egin{document}

      ableofcontents

      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} 

    (4)插入图片

    documentclass{article}   usepackage{graphicx} egin{document}   includegraphics[width=4.00in,height=3.00in]{figure.eps} end{document} 

    注意:图片的格式是eps格式

  • 相关阅读:
    Eclipse扩展安装插件方式
    Tomcat通过JNDI方式链接MySql数据库
    ArrayList实现根据某属性大小相间排序
    JMeter 怎么保存登录状态
    JMeter怎么使用代理服务器
    JMeter模拟多个用户进行登录
    JMeter怎么在get URL请求、POST请求中添加动态参数用于服务器段安全验证
    (转)sizeof()和_countof()区别
    潜心修炼, 生活,会给你一个惊喜~
    最初的梦想
  • 原文地址:https://www.cnblogs.com/shengxinjack/p/7634355.html
Copyright © 2011-2022 走看看