其次,如果你的论文足够简单,没有复杂公式、不需要交叉引用,一条主线走到底,使用 Markdown 来编写也没什么不好,甚至可以说是更好的选择。Simple is beautiful.
可以使用CSS美化markdown编排的文档.使用方法:在markdown文档开头添加,例如
<link href="markdown.css" rel="stylesheet"></link>
在具体的css文件里可以添加如下文件调整行间距,例如:
@charset "utf-8"
html { font-size: 100%overflow-y: scroll-webkit-text-size-adjust: 100%-ms-text-size-adjust: 100%}
body{
color:#444
font-family:Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif
font-size:13px
line-height:1.5em
padding:1em
margin:auto
max-width:42em
background:#fefefe
}