6

Emacs org-modeで、インライン脚注定義を折りたたまれたように表示する方法はありますか?

たとえば、次のような行です。

This effect is due to the strength of weak ties[fn:: Newman, Mark, Albert-László Barabási, and Duncan J. Watts. 2006. The Structure and Dynamics of Networks. Princeton, NJ: Princeton University Press].

単純に次のように表示される場合があります。

This effect is due to the strength of weak ties[✭].

また、必要に応じて脚注を表示するコマンドも必要です。したがって、おそらく必要なのは2つのコマンドです:org-hide-footnotesorg-show-footnotes

4

2 に答える 2

3

現時点では、これが可能だとは思いません。またTAB、その中で拡張キーとして使用すると、キーがさらに過負荷になる可能性があります。

一方、脚注に脚注セクションを使用しない特別な理由はありますか?

C-c C-x fあなたが持っている脚注を作成/相互作用します。

(org-footnote-action&optional SPECIAL)

脚注に対して正しいことをしてください。

脚注の参照にあるときは、定義にジャンプします。

定義時に、参照が存在する場合はその参照にジャンプし、存在しない場合は参照を作成することを提案します。

定義でも参照でもない場合は、インタラクティブに新しい脚注を作成します。

接頭辞argSP​​ECIALを使用して、メニューに追加のコマンドを提供します。

追加のコマンドは次のとおりです。

      s   Sort the footnote definitions by reference sequence.  During editing,
          Org makes no effort to sort footnote definitions into a particular
          sequence.  If you want them sorted, use this command, which will
          also move entries according to org-footnote-section.  Automatic
          sorting after each insertion/deletion can be configured using the
          variable org-footnote-auto-adjust.
      r   Renumber the simple fn:N footnotes.  Automatic renumbering
          after each insertion/deletion can be configured using the variable
          org-footnote-auto-adjust.
      S   Short for first r, then s action.
      n   Normalize the footnotes by collecting all definitions (including
          inline definitions) into a special section, and then numbering them
          in sequence.  The references will then also be numbers.  This is
          meant to be the final step before finishing a document (e.g., sending
          off an email).  The exporters do this automatically, and so could
          something like message-send-hook.
      d   Delete the footnote at point, and all definitions of and references
          to it.
于 2013-03-07T14:59:06.267 に答える
2

初期(2014年2月6日):最初の草案。

2014年2月18日編集:適切なif / then / elseステートメントが含まれるように関数を改訂しました。lawlist-toggle-block-visibilityつまり、行に必要な開始領域regexpが含まれている場合、ブロックの可視性が切り替えられます。それ以外の場合は、申し訳ありませんというメッセージが表示されます。。。。コード折り畳みの関連スレッドに引用を追加しました。線ではなく点を参照するようにエラーメッセージを修正しました。

以下の回答のソースコードもGithubに保存されています: https ://github.com/lawlist/lawlist-org-block-toggle/blob/master/lawlist-org-block-toggle.el

関連する問題(つまり、単語を含むプロパティドロワーを完全に非表示にするには:PROPERTIES:)については、次のスレッドを参照してください 。org-modeで:PROPERTIES:ドロワーを完全に非表示にする

半関連の問題(つまり、コードフォールドされるカスタムブロックを作成する)については、 https ://tex.stackexchange.com/a/161196/26911も参照してください。

このソリューションは、org-modeバージョン8.2.5cを含むかなり新しいバージョンのEmacs Trunk(2014年1月19日にビルドされた)でテストされました。ドロワーは脚注やhtmlブロックとは別に折りたたまれ:PROPERTIES::END:いるため、このソリューションでは、脚注やhtmlコードブロックがそのプロパティドロワー内のどこにも存在しないことを想定しています。脚注はテキスト段落のどこにでも表示できますが、脚注内に角かっこをもう1組含めることはできません。このコードは、折りたたまれた領域の終わりを示すために最初の最後の角かっこを探すためです。このコードはそれを想定して#+BEGIN_HTMLおり、#+END_HTML両方ともフラッシュレフトになります左側の余白があります。スタートアップビューは引き続き同じように機能します。たとえば、変数org-startup-foldedorg-hide-block-startup

の変更によりorg-cycle-internal-local、org-modeでのあらゆる形式の折りたたみのタブサイクリングが可能になります。関数のページネーションを修正して読みやすくし、次の条件を追加しただけです ((eq org-cycle-subtree-status 'subtree) (org-show-subtree) (message "ALL") (setq org-cycle-subtree-status 'all))。インタラクティブ機能org-cycleは、さまざまな折りたたまれた/展開されたビューのすべての間でタブサイクルを行うために引き続き使用されます。この関数lawlist-block-org-cycle-internal-localは、によって使用される非対話型のサポート関数ですorg-cycle。このソリューションのコードの2つのdefalias部分は、すべてが正しく機能するために必要です。タブサイクリングを使用する代わりに、ユーザーは見出しまたは小見出しの先頭で次のコマンドを使用してインタラクティブ関数を直接呼び出すこともできます。 M-x org-cycle RET

脚注またはhtmlブロックの表示を直接切り替えるには、インタラクティブ機能を使用しますlawlist-toggle-block-visibility。脚注の先頭またはhtmlブロック の先頭を含む行の任意の場所にカーソルを置き、次のように入力します。M-x lawlist-toggle-block-visibility RET

(require 'org)

(defalias 'org-cycle-hide-drawers 'lawlist-block-org-cycle-hide-drawers)

(defun lawlist-block-org-cycle-hide-drawers (state)
  "Re-hide all drawers, footnotes or html blocks after a visibility state change."
  (when
    (and
      (derived-mode-p 'org-mode)
      (not (memq state '(overview folded contents))))
    (save-excursion
      (let* (
          (globalp (memq state '(contents all)))
          (beg (if globalp (point-min) (point)))
          (end
            (cond
              (globalp
                (point-max))
              ((eq state 'children)
                (save-excursion (outline-next-heading) (point)))
              (t (org-end-of-subtree t)) )))
        (goto-char beg)
        (while
          (re-search-forward
            ".*\\[fn\\|^\\#\\+BEGIN_HTML.*$\\|^[ \t]*:PROPERTIES:[ \t]*$" end t)
          (lawlist-org-flag t))))))

(defalias 'org-cycle-internal-local 'lawlist-block-org-cycle-internal-local)

(defun lawlist-block-org-cycle-internal-local ()
  "Do the local cycling action."
  (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
    (save-excursion
      (if (org-at-item-p)
        (progn
          (beginning-of-line)
          (setq struct (org-list-struct))
          (setq eoh (point-at-eol))
          (setq eos (org-list-get-item-end-before-blank (point) struct))
          (setq has-children (org-list-has-child-p (point) struct)))
        (org-back-to-heading)
        (setq eoh (save-excursion (outline-end-of-heading) (point)))
        (setq eos (save-excursion (1- (org-end-of-subtree t t))))
        (setq has-children
          (or
            (save-excursion
              (let ((level (funcall outline-level)))
                (outline-next-heading)
                (and
                  (org-at-heading-p t)
                  (> (funcall outline-level) level))))
            (save-excursion
              (org-list-search-forward (org-item-beginning-re) eos t)))))
      (beginning-of-line 2)
      (if (featurep 'xemacs)
        (while
            (and
              (not (eobp))
              (get-char-property (1- (point)) 'invisible))
          (beginning-of-line 2))
        (while
            (and
              (not (eobp))
              (get-char-property (1- (point)) 'invisible))
          (goto-char (next-single-char-property-change (point) 'invisible))
          (and
            (eolp)
            (beginning-of-line 2))))
      (setq eol (point)))
    (cond
      ((= eos eoh)
        (unless (org-before-first-heading-p)
          (run-hook-with-args 'org-pre-cycle-hook 'empty))
        (org-unlogged-message "EMPTY ENTRY")
        (setq org-cycle-subtree-status nil)
        (save-excursion
          (goto-char eos)
          (outline-next-heading)
          (if (outline-invisible-p)
            (org-flag-heading nil))))
      ((and
          (or
            (>= eol eos)
            (not (string-match "\\S-" (buffer-substring eol eos))))
          (or
            has-children
            (not (setq children-skipped
              org-cycle-skip-children-state-if-no-children))))
        (unless (org-before-first-heading-p)
          (run-hook-with-args 'org-pre-cycle-hook 'children))
        (if (org-at-item-p)
          ;; then
          (org-list-set-item-visibility (point-at-bol) struct 'children)
          ;; else
          (org-show-entry)
          (org-with-limited-levels (show-children))
          (when (eq org-cycle-include-plain-lists 'integrate)
            (save-excursion
              (org-back-to-heading)
              (while (org-list-search-forward (org-item-beginning-re) eos t)
                (beginning-of-line 1)
                (let* (
                    (struct (org-list-struct))
                    (prevs (org-list-prevs-alist struct))
                    (end (org-list-get-bottom-point struct)))
                  (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
                    (org-list-get-all-items (point) struct prevs))
                  (goto-char (if (< end eos) end eos)))))))
        (org-unlogged-message "CHILDREN")
        (save-excursion
          (goto-char eos)
          (outline-next-heading)
          (if (outline-invisible-p)
            (org-flag-heading nil)))
        (setq org-cycle-subtree-status 'children)
        (unless (org-before-first-heading-p)
          (run-hook-with-args 'org-cycle-hook 'children)))
      ((or
          children-skipped
          (and
            (eq last-command this-command)
            (eq org-cycle-subtree-status 'children)))
        (unless (org-before-first-heading-p)
          (run-hook-with-args 'org-pre-cycle-hook 'subtree))
        (outline-flag-region eoh eos nil)
        (org-unlogged-message
        (if children-skipped
          "SUBTREE (NO CHILDREN)"
          "SUBTREE"))
        (setq org-cycle-subtree-status 'subtree)
        (unless (org-before-first-heading-p)
          (run-hook-with-args 'org-cycle-hook 'subtree)))
      ((eq org-cycle-subtree-status 'subtree)
        (org-show-subtree)
        (message "ALL")
        (setq org-cycle-subtree-status 'all))
      (t
        (run-hook-with-args 'org-pre-cycle-hook 'folded)
        (outline-flag-region eoh eos t)
        (org-unlogged-message "FOLDED")
        (setq org-cycle-subtree-status 'folded)
        (unless (org-before-first-heading-p)
        (run-hook-with-args 'org-cycle-hook 'folded))))))

(defun lawlist-org-flag (flag)
  "When FLAG is non-nil, hide any of the following:  html code block;
footnote; or, the properties drawer.  Otherwise make it visible."
  (save-excursion
    (beginning-of-line 1)
    (cond
      ((looking-at ".*\\[fn")
        (let* (
          (begin (match-end 0))
          end-footnote)
          (if (re-search-forward "\\]"
                (save-excursion (outline-next-heading) (point)) t)
            (progn
              (setq end-footnote (point))
              (outline-flag-region begin end-footnote flag))
            (user-error "Error beginning at point %s." begin))))
      ((looking-at "^\\#\\+BEGIN_HTML.*$\\|^[ \t]*:PROPERTIES:[ \t]*$")
        (let* ((begin (match-end 0)))
          (if (re-search-forward "^\\#\\+END_HTML.*$\\|^[ \t]*:END:"
                (save-excursion (outline-next-heading) (point)) t)
            (outline-flag-region begin (point-at-eol) flag)
            (user-error "Error beginning at point %s." begin)))))))

(defun lawlist-toggle-block-visibility ()
"For this function to work, the cursor must be on the same line as the regexp."
(interactive)
  (if
      (save-excursion
        (beginning-of-line 1)
          (looking-at
            ".*\\[fn\\|^\\#\\+BEGIN_HTML.*$\\|^[ \t]*:PROPERTIES:[ \t]*$"))
    (lawlist-org-flag (not (get-char-property (match-end 0) 'invisible)))
    (message "Sorry, you are not on a line containing the beginning regexp.")))
于 2014-02-06T04:50:30.960 に答える