• LaTeX自学ing


    恩看标题嘛、、、Xs要自学LaTeX的说!

    话说cnblogs不支持插入LaTeX格式的代码的说?、、唔~

    嘛。。。首先是些简单的东西(像是文件的格式啦,作者啦之类的):

    (注意:documentclass, egin, end, author 和 itle的用法)

     1 documentclass {article}
     2     author {Xs}
     3     	itle {Xs is trying to study LaTeX}
     4 
     5 egin{document}
     6 
     7     maketitle
     8     I hate "hello world" desu!!! % it is just a comment
     9 
    10 end{document}
    View Code

     然后就是段落啦~:

    (注意:maketitle, ableofcontents, section, subsection, subsubsection, paragraph, subparagraph 和 ewline的用法)

     1 documentclass {article}
     2     author {Xs}
     3     	itle {Xs is trying to study LaTeX}
     4 
     5 egin {document}
     6     maketitle
     7     	ableofcontents
     8 
     9     section {Xs's note about LaTex}
    10      Xs says that section is the main title
    11         subsection {What about sub**?}
    12         subsection means a minor subject, like **.1, **.2
    13             subsubsection {Then is is subsubsection}
    14             the name is so long that Xs think it's 	extbf{alrready awful!!!!}
    15                 paragraph {And the next is the Paragraph}
    16                     subparagraph {Oh!!!}
    17                     the last is subparagraph.Finally!
    18                     subparagraph {Let's try more about subparagraph~}
    19                     Xs find that use various ways can be used to make a new line 
    ewline
    20                     Like this desu!
    21                     
    22 end {document}
    View Code

     不过呢、、、以上对于LaTeX的公式毫无应用价值呢、、、

    By Xs酱~ 转载请说明 博客地址:http://www.cnblogs.com/rausen
  • 相关阅读:
    检测对象类型的两种方式,constructor属性和instanceof
    Javascript中的事件
    工厂模式、寄生构造函数模式、稳妥构造函数模式比较
    ECMAScript中的原型继承
    Javascript中new的作用
    js组合继承
    【原型模式】--重写原型对象prototype的影响
    动态原型模式
    js类型检测
    Javascript中的继承与复用
  • 原文地址:https://www.cnblogs.com/rausen/p/4157854.html
Copyright © 2020-2023  润新知