zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    IoC容器设计
    乐观锁(Optimistic Lock)
    file,path,uri互相转换
    QGraphicsView的paintEvent双缓存绘画
    简单的串口通信程序控制光源
    Qt--QMdiArea和QMdiSubWindow的基本用法
    Qt--支持鼠标拖动来移动内容的QScrollArea视窗
    快速排序算法记录
    结构体在内存中的对齐规则
    求N个数的数组中第K大的数的值
  • 原文地址:https://www.cnblogs.com/rausen/p/4157854.html
Copyright © 2011-2022 走看看