2016-04-07 32 views
1

画像を表示するorg-toggle-inline-imagesを使用してインライン画像を切り替えると、ただし、イメージが大きすぎると、エディタのフレームがオーバーフローします(下記のスクリーンショットを参照)。画像の最大サイズは、ウィンドウサイズの幅を超えてはなりませんを意味している画像は責任にする方法org-modeでインラインイメージを作成するにはどうすればいいですか?

enter image description here

もちろん、次のコードを使用してイメージのサイズを固定することができます。しかし、私が本当に欲しいのは、何らかの応答性のある画像表示です。この質問を見て、あなたの時間を

(setq org-mode-actual-width 600) 

enter image description here

感謝。 org-image-actual-widthのドキュメントから

答えて

2

Documentation: 
Should we use the actual width of images when inlining them? 

When set to t, always use the image width. 

When set to a number, use imagemagick (when available) to set 
the image's width to this value. 

When set to a number in a list, try to get the width from any 
#+ATTR.* keyword if it matches a width specification like 

    #+ATTR_HTML: :width 300px 

and fall back on that number if none is found. 

When set to nil, try to get the width from an #+ATTR.* keyword 
and fall back on the original width if none is found. 

ですから、幅を指定するには、属性#+ ATTR_HTMLを使用することができます。ただし、手動で指定する必要があります。これは十分に反応しますか?

関連する問題