zoukankan      html  css  js  c++  java
  • How to create relative hyperlinks in Org mode?

    Relative hyperlinks are indispensable for maintaining a bunch of inter-connected documents that have a fixed relative folder structure, when the whole folder tree is to be mounted at different locations on different computers. In Emacs Org mode, the fast key to insert a hyperlink is C-c C-l, which is bound to the function org-insert-link. However, according to its documentation below, we can only input a relative path at the prompt in the mini-buffer by pressing the key combination C-u C-c C-l, while the internal representation of the hyperlink still adopts an absolute path. This is not what I want.

    With a C-u prefix, prompts for a file to link to. The file name can be selected using completion. The path to the file will be relative to the current directory if the file is in the current directory or a subdirectory. Otherwise, the link will be the absolute path as completed in the minibuffer (i.e. normally ~/path/to/file). You can configure this behavior using the option `org-link-file-path-type'.

    By further checking the documentation of the variable org-link-file-path-type mentioned above, we know that it is this variable that actually controls the internal hyperlink format. Valid values of this variable are:

    • relative: the path name in file links is stored relative to the current directory;
    • absolute: absolute path name is adopted, while the home directory is still represented as ~/;
    • noabbrev: same as absolute but there is no abbreviation for the home directory;
    • adaptive: use relative path for files in the current directory and subdirectories of it, while for other files, use an absolute path.

    Then, the configuration added to ~/.emacs for enabling relative hyperlinks in Org mode is as below.

    (setq org-link-file-path-type 'relative)
      子曰:“君子食无求饱,居无求安,敏于事而慎于言,就有道而正焉,可谓好学也已。”
  • 相关阅读:
    com.panie 项目开发随笔_前后端框架考虑(2016.12.8)
    Jsoup 使用教程:数据抽取
    Jsoup 使用教程:输入
    项目中图片处理总结
    jsonp 跨域请求
    由Memcached升级到 Couchbase的 Java 客户端的过程记录(三)
    由Memcached升级到 Couchbase的 Java 客户端的过程记录(二)
    jquery eval解析JSON中的注意点介绍
    JS禁止WEB页面鼠标事件大全
    jQuery事件之鼠标事件
  • 原文地址:https://www.cnblogs.com/quantumman/p/14459997.html
Copyright © 2011-2022 走看看