List, I've been using orgmode for about a year, and I'm familiar with the basics: tree editing, maintaining an agenda, exporting, and making tables. With my latest install of orgmode, however, my tables are misaligned, and I do not know why. I'm using "Emacs For Mac OS X" http://emacsformacosx.com/ vers. 24.2, orgmode 7.9.1 and OSX 10.8.2. My last emacs install on a different machine did not have this problem. My .emacs is pasted below, and I've attached a shot of a misaligned table. Trandler (require 'org-install) (global-visual-line-mode t) (add-to-list 'load-path "~/emacs_load-path") ;;(require 'backup-each-save) ;;(add-hook 'after-save-hook 'backup-each-save) ;;(require 'calfw) ;;(require 'calfw-org) (ido-mode t) (setq ido-create-new-buffer 'always) ;disable auto save (setq auto-save-default nil) (setq org-alphabetical-lists t) (setq org-todo-keywords '((sequence "TODO" "IN PROGRESS" "|" "DONE" "CANCELLED"))) (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) (org-babel-do-load-languages 'org-babel-load-languages '((sh . true) (python . true)) ) (setq org-icalendar-honor-noexport-tag t) (setq org-icalendar-honor-export-tag t) ;; Capture (global-set-key (kbd "C-c r") 'org-capture) (setq org-capture-templates '(("d" "Dark Show Notes" entry (file+headline "~/org/darkshow/darkshow.org" "Capture") "\n\n** %?\n%T\n%i\n%a\n\n\n" :empty-lines 1) ("p" "Personal Notes" entry (file+headline "~/org/personal/personal.org" "Capture") "\n\n** %?\n%T\n%i\n%a\n\n\n" :empty-lines ))) ;; make the frame contain a single window. by default org-capture ;; splits the window. (add-hook 'org-capture-mode-hook 'delete-other-windows) (defun make-capture-frame () "Create a new frame and run org-capture." (interactive) (make-frame '((name . "capture") (width . 40) (height . 15))) (select-frame-by-name "capture") (setq word-wrap 1) (setq truncate-lines nil) (org-capture)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-cc" 'org-capture) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-cb" 'org-iswitchb) (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(org-agenda-files (quote ("~/org/noise_issue/noise_issue.org" "~/org/harajuku_sf/harajuku_sf.org" "~/org/bowel_issue/bowel_issue.org" "~/org/patent_phone/patent_phone.org" "~/org/games/games.org" "~/org/mouse_lawsuit/mouse_lawsuit.org" "~/org/music/music.org" "~/org/newshow/newshow.org" "~/org/school/school.org" "~/org/darkshow/darkshow.org" "~/org/personal/personal.org")))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(default ((t (:inherit nil :stipple nil :background "White" :foreground "Black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 140 :width normal :foundry "apple" :family "Inconsolata"))))) (add-to-list 'default-frame-alist '(width . 30))