引言

Markdown内嵌HTML语法所以很多想要的效果直接属于HTML语法就行。这里记录一些比较常用的方法,方便查阅。

如何引用文献

<!--写在需要索引的地方-->
<sup><a href="#ref1">1</a></sup> 
<!--写在Reference处-->
<span name = "ref1">

应用:

image-20230306043528282
image-20230306043612313

结果:

image-20230306043720889

图片并排

<table frame=void>	<!--使用table标签,且frame=void消除外边框-->
	<tr>		   <!--<tr>一行的内容<\tr>,<td>一个格子的内容<\td>-->
    <td><center><img src="图片地址1"		
                     alt="第一张图片显示不出时显示的文字"
                     height="填数字作为高度"/></center></td>	<!--<center>标签将图片居中-->
    <td><center><img src="图片地址2"
                     alt="第二张图片显示不出时显示的文字"
                     height="高度一致会好看"/></center></td>
    </tr>
</table>

文字居中

<center>xxxx</center>
<center><font size='8'><b>xxx</center>