LaTex · overleaf | 使用技巧存档
- 如何使用 bibtex:http://www.taodudu.cc/news/show-5832925.html?action=onClick
- bibtex 格式:https://blog.csdn.net/zzzorz/article/details/117048681
- 分章节 include 更清晰:https://blog.csdn.net/hahaha224/article/details/122601479
- \label{}, \\ref{}
- 子图:https://blog.csdn.net/y15520833229/article/details/130889510
- latex 表格 单元格内换行:https://zhuanlan.zhihu.com/p/672593535
- latex 在线生成表格:https://www.tablesgenerator.com/
公式相关:
- 公式换行:\begin{equation}\begin{split},然后使用 \\\ 换行;
- 谢谢你,公式侠:https://blog.csdn.net/CUMTB_ZHOU/article/details/123395126
- latex 数学符号:
- \(\times\) \times,\(\sim\) \sim,\(\dot x\) \dot x
- \(\mathbb{R}\) \mathbb
- 取消公式斜体效果 \mathrm
- \(\perp\) \perp,\(\not\perp\) \not\perp
- \(\subset\) \subset,\(\subseteq\) \subseteq,\(\supset\) \supset,\(\supseteq\) \supseteq
- \(\cap\) \cap,\(\cup\) \cup,\(\bigcap\) \bigcap,\(\bigcup\) \bigcup,\(\land\) \land,\(\lor\) \lor
- \(\triangleq\) \triangleq,\(\iff\) \iff,\(\Rightarrow\) \Rightarrow,\(\mapsto\) \mapsto,\(\propto\) \propto
- \(\succeq\) \succeq,\(\preceq\) \preceq,\(\succ\) \succ,\(\prec\) \prec,\(\gg\) \gg,\(\ll\) \ll
- \(\otimes\) \otimes,\(\oplus\) \oplus,\(\odot\) \odot
- \(\underset{a\sim A}{R(a)}\)
\underset{a\sim A}{R(a)}
良好的三线表示例:
\begin{table}[htbp]
\caption{}
\label{tab:error_ratio}
\begin{center}
\begin{tabular}{ccc}
\toprule
% & \makecell[c]{Disagreement \\ query selection}
% & \makecell[c]{Skill-based \\ query selection} \\
& Disagreement & Skill-based \\
\midrule
Cheetah\_run & 0.3270 & \textbf{0.4839} \\
Walker\_run & 0.2448 & \textbf{0.4648} \\
Quadruped\_walk & 0.3570 & \textbf{0.3800} \\
Quadruped\_run & 0.2545 & \textbf{0.2856} \\
\midrule
% & \makecell[c]{Disagreement \\ query selection \\ (the first 50\%)}
% & \makecell[c]{Skill-based \\ query selection \\ (the first 50\%)} \\
& \makecell[c]{Disagreement \\ (the first 50\%)}
& \makecell[c]{Skill-based \\ (the first 50\%)} \\
\midrule
Cheetah\_run & 0.5708 & 0.5375 \\
Walker\_run & 0.4475 & \textbf{0.7183} \\
Quadruped\_walk & 0.4806 & \textbf{0.5719} \\
Quadruped\_run & 0.4229 & \textbf{0.5346} \\
\bottomrule
\end{tabular}
\end{center}
\end{table}