工具:typora
1. 設置圖片大小(本節引用自 https://support.typora.io/Resize-Image/)
Typora容許使用<img>
標籤顯示圖像,也可用於調整圖像的大小。css
例如,您能夠指定標記的屬性width
或height
屬性<img>
,或在其style
屬性中設置寬度/高度:html
<img src="https://www.google.com/doodles/kamma-rahbeks-241st-birthday" width="200px" /> <!--or--> <img src="https://www.google.com/doodles/kamma-rahbeks-241st-birthday" style="height:200px" />
另外一個常見的用例是,當您嘗試插入視網膜圖像,並但願將其縮放爲「正確」尺寸時,您能夠zoom
在其style
屬性中指定一個因子。工具
<img src="https://www.google.com/doodles/kamma-rahbeks-241st-birthday" style="zoom:50%" />
Typora能夠理解和顯示上述語法。雖然您能夠在其style
屬性中設置其餘css屬性,但在Typora編輯或預覽時會忽略它們,但可能會影響導出的HTML或PDF。google
2. 設置圖片位置(center/right/left)(使用HTML式樣)
<div align=center> ![]() </div> <!--or-> <div align=center> <img src="" width=""> </div>