本文针对LaTeX使用或阅读中遇到的问题及其答案进行总结,不对基础知识做出详细介绍。
注:本文部分内容来源于网络,参考网站已标注于文章末尾,由于参考资料较多,因此不在文中每处引用处进行标记。
\begin{figure}[H] 的[H]的含义
当插入图片、表格等的时候,往往因为其篇幅较大、且往往含有标题等原因,有可能跨越多个页面或造成排版上的问题,因此LaTeX会将其设置为浮动体,并自动对其位置进行调整,而如何调整其位置的方法也是可选的。
LaTeX算法可接受位置描述符等参数调配图表位置。位置描述符有以下几种:
描述符 | 期望位置 |
---|---|
h | 将浮动体放在这里(Latex会根据其排版美学做调整) Place the float here, i.e., approximately at the same point it occurs in the source text (however, not exactly at the spot) ) |
t | 将浮动体放在页的顶部 Position at the top of the page. |
b | 将浮动体放在页的底部 Position at the bottom of the page. |
p | 将浮动体单独成页 Put on a special page for floats only. |
l | 忽略LaTeX的排版美学内置参数 Override internal parameters LaTeX uses for determining “good” float positions. |
H | 将浮动体强制放在这里 Places the float at precisely the location in the LaTeX code. Requires the float package,i.e., \usepackage{float}. This is somewhat equivalent to !ht. |
LaTeX的公式中字体设置为正体
LaTex中默认的公式中字体为斜体,如P_x
但如果想让其下标为正体,那么可以写作:P_{\rm x}
除了\rm外,还可以设置为其他字体,需要引入不同的包:
1 | \usepackage{bm} % 粗斜体 \bm |
\includegraphics[width=.95\textwidth]{xxx.eps}的含义
上述命令是用于插入图片的,这点毋庸置疑,但是[width=.95\textwidth]
是何意呢?
事实上,它表示 插入图形的宽度为文本行宽的 95%
关于其他参数请参看:LaTex技巧[22]:LaTex插图命令includegraphics参数详解
Latex中thebibliography后面的数字的含义
\ContinuedFloat的用法
LaTeX表格中\multirow的使用
参考资料: