
misc
coderplay
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ocamllex 指南
原译文发布在ocaml.cn , 这里的blog不支持html的说,郁闷 Ocamllex 改编者: SooHyoung Oh 此指南讲解怎么使用Ocaml语言分发包所带的ocamllex. 此文档从 flex 手册借签了很多. 请把你的意见和建议发至 此指南还在编写当中,最新的版本放在 http://pllab.kaist.ac.kr/~shoh/ocaml/ocamllex-ocamlyac...2007-06-22 12:24:32 · 673 阅读 · 0 评论 -
几种数据库的jdbc驱动实现
要实现自己的JDBC驱动,最重要的是实现以下几个接口: java.sql.Driver java.sql.Connection java.sql.Statement java.sql.ResultSet 这篇文章讲解了如何实现一个简单的jdbc驱动: http://www.javaworld.com/javaworld/jw-05-2002/jw-0517-jdbcdriver.h...2009-05-02 23:00:48 · 357 阅读 · 0 评论 -
latex插图位置问题
使用figure会进行浮动环境,这样插的图latex会自动调整。 一般我们不需要这样的功能。 可以使用 [code] \begin{figure}[h] \end{figure} [/code] 或者使用\includegraphics 插入,如果列figure估计列不出来 如果想要放在自己指定位置并且需要交叉引用的话,要使用以下的格式: [code] \makeatl...2008-05-14 15:05:15 · 3001 阅读 · 0 评论 -
texlive下面有很多程序执行ruby脚本
比如pstopdf的, 以前用的都是ps2pdf.exe 现在这儿是用 >texmfstart --verbose pstopdf.rb beamertest.ps texmfstart version 2.0.3 locating 'pstopdf.rb' in current path '.' locating 'pstopdf.rb' in caller path './../ru...2008-05-14 03:41:37 · 142 阅读 · 0 评论 -
中文粗体,斜体的问题
中文没有粗体,斜体。这些都是洋文的, windows上的都是伪粗,伪斜。2008-05-12 17:43:09 · 1130 阅读 · 0 评论 -
Resume
[b]Personal Information[/b] Name:周敏 (Min Zhou) Gender:male Date of Birth:1982/04 Current WorkState:Only the good opportunity then i consider Primary Contact:Mobile (13560220768) ...2008-03-25 12:57:42 · 497 阅读 · 0 评论 -
texlive使用日记
往代码里面插入中文。 这段有时候会出错,编译不了。 但大多时候可以正常运行。 \lstset{escapebegin=\textbraceleft\begin{CJK}{GB}{gbsn},escapeend=\end{CJK}\textbraceright} \begin{lstlisting}[escapeinside=\{\}] for i:=maxint to 0 do beg...2007-12-20 01:42:01 · 218 阅读 · 0 评论 -
texlive 2007使用日记
\input与\include有区别. 比如写Makefile的时候, Makefile所在目录是项目的主目录. 此项目下面有src/chapter1.tex, src/main.tex 如果main.tex用\input引用chapter1.tex时,得带上目录名 \input{src/chapter1} 表明此时目录是和Makefile的地址一致。 而\include却不用,它是 ...2007-12-18 02:01:12 · 182 阅读 · 0 评论 -
texlive 2007在windows上的安装与使用
[color=red]安装[/color] 1. 在http://www.tug.org/texlive/下载texlive的iso文件. 它分live和dist版, windows上可以用dist版. live版内容太多. 2. 安装好了后, 会有一个texmf-local目录与texlive的根目录平行. 这个texmf-local目录也就是你自己的宏包,字体等资源的添加目录. ...2007-12-17 06:30:40 · 279 阅读 · 0 评论 -
单分派与多分派,聊天记录
2007-12-17 23:06:01 lct The solution to these problems is to replace dynamically-dispatched messages with one or more statically-bound procedure calls wherever possible, to inline-expand the callee me...2008-06-14 19:11:52 · 128 阅读 · 0 评论 -
出道distinct相关的sql题给大家做做
这几天在做sql编译相关的东西, 自己弄了个题目,连资深数据库开发人员都可能会搞错. 以下sql中哪些执行时会报错? (适于所有常见DBMS) 1. select distinct col from tbl 2. select distinct col1, distinct col2 from tbl 3. select coun...2009-05-22 20:13:07 · 135 阅读 · 0 评论