Monthly Archives: April 2010

emacs, vim 功能设置; bibtex 参数设置;latex 字体大小

1, emacs 功能设置 方法:添加以下代码到.emacs文件中, .emacs文件地址:(Windows Vista and Win7 是 C:\Users\Username\AppData\Roaming\.emacs);打开图片显示功能 (auto-image-file-mode t);; 直接跳到某一行(define-key global-map "\C-x\C-g" ‘goto-line);;color-theme 设置下载color-theme压缩包(现在版本为6.6.0)。地址:http://download.gna.org/color-theme/ 或者 http://ftp.twaren.net/Unix/NonGNU/color-theme/解压缩color-theme-6.6.0.zip (or tar.gz…). 解压到 Home 目录下(Windows Vista and Win7 是 C:\Users\Username\AppData\Roaming\.emacs.d\,然后在 .emacs 中加入(add-to-list ‘load-path "~/.emacs.d/color-theme")(require ‘color-theme)(load-file "~/.emacs.d/color-theme/color-theme.el")(color-theme-initialize)(color-theme-dark-laptop);;字体设置;; set font 字体和字体大小(set-default-font "Consolas-14")(set-fontset-font "fontset-default" … Continue reading

Posted in Software | 2 Comments