Emacs 24.4.1中的下标未正确显示

Dyl*_*lan 3 unicode emacs agda

我正在进行使用unicode下标k("\ _k")的赋值.但是,我没有得到下标k,而是得到了这个:

![] [1]

仍然可以使用带有数字和一些字母的下标,但不能使用'k'.

我最初遇到了emacs 24.3的问题,然后被告知更新到24.4.这个问题仍然存在.

有没有其他人有这个问题,并找到了解决方案?

我在使用Emacs v.24.4.1的Mac上运行

提前致谢

编辑

这是我的.emacs文件:

(load-file (let ((coding-system-for-read 'utf-8))
             (shell-command-to-string "agda-mode locate")))

(set-default-font "-apple-DejaVu_Sans-medium-normal-normal-*-*-*-*-*-p-0-iso10646-1")
; Change Control-c Control-, and Control-c Control-. in Agda mode
; so they show the normalized rather than the "simplified" goals
(defun agda2-normalized-goal-and-context ()
  (interactive)
  (agda2-goal-and-context '(3)))
(defun agda2-normalized-goal-and-context-and-inferred ()
  (interactive)
  (agda2-goal-and-context-and-inferred '(3)))
(eval-after-load "agda2-mode"
  '(progn
     (define-key agda2-mode-map (kbd "C-c C-,")
       'agda2-normalized-goal-and-context)
     (define-key agda2-mode-map (kbd "C-c C-.")
       'agda2-normalized-goal-and-context-and-inferred)))

; This defines backslash commands for some extra symbols.
(eval-after-load "quail/latin-ltx"
  '(mapc (lambda (pair)
           (quail-defrule (car pair) (cadr pair) "TeX"))
         '( ("\\bb" "") ("\\bl" "") ("\\bs" "")
            ("\\bt" "") ("\\bv" "") ("\\cv" "?")
            ("\\comp" "?") ("\\m" "?") ("\\om" "?"))))

; This sets the Control-c Control-k shortcut to
; describe the character under your cursor.
(global-set-key "\C-c\C-k" 'describe-char)

(custom-set-variables
 '(agda2-include-dirs
   (quote ("." "/Users/dylanthiemann/Dropbox/University of Iowa/2nd Senior Year/Spring 2015/PLC/ial")))
 )
Run Code Online (Sandbox Code Playgroud)

代码来自Agda:

module bool-kleene-thms where

open import bool
open import bool-kleene
open import eq

&&?-idem : ? (b : ?) ? b &&? b ? b
&&?-idem b = {!!}

tt-&&? : ? (b : ?) ? tt &&? b ? b
tt-&&? b = {!!}

||?-idem : ? (b : ?) ? b ||? b ? b
||?-idem b = {!!}

||?-tt : ? (b : ?) ? b ||? tt ? tt
||?-tt b = {!!}

||?-ff : ? (b : ?) ? b ||? ff ? b
||?-ff b = {!!}
Run Code Online (Sandbox Code Playgroud)

编辑2

Ctrl-u Ctrl-x =受影响人物的结果:

             position: 91 of 830 (11%), column: 2
            character: ? (displayed as ?) (codepoint 8342, #o20226, #x2096)
    preferred charset: unicode (Unicode (ISO10646))
code point in charset: 0x2096
               script: symbol
               syntax: w        which means: word
             category: .:Base, L:Left-to-right (strong)
             to input: type "\_k" with Agda input method
          buffer code: #xE2 #x82 #x96
            file code: #xE2 #x82 #x96 (encoded by coding system utf-8-unix)
              display: terminal code #xE2 #x82 #x96
Run Code Online (Sandbox Code Playgroud)

Dyl*_*lan 5

我需要安装新字体...我使用这个http://dejavu-fonts.org/wiki/Download然后使用Font Books安装.这个问题随后得到了解决!