gpt4 book ai didi

emacs - Emacs 24.4.1 中的下标未正确显示

转载 作者:行者123 更新时间:2023-12-01 11:34:52 24 4
gpt4 key购买 nike

我正在处理使用 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")))
)

部分代码来自 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 = {!!}

编辑 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

最佳答案

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

关于emacs - Emacs 24.4.1 中的下标未正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28176890/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com