更改

跳到导航 跳到搜索
添加817字节 、 2021年5月13日 (四) 06:18
无编辑摘要
第2行: 第2行:     
== 笔记 ==
 
== 笔记 ==
 +
 +
=== 表格标题换行 ===
 +
 +
无需宏包的做法:
 +
#使用 <code>\shortstack</code> 命令,缺点为无法调整竖直方向的对齐,其它单行标题靠下。
 +
#:<syntaxhighlight lang=latex>
 +
\begin{tabular}{ll}
 +
  \shortstack{ABC\\DEF} & GHI \\
 +
  \hline
 +
  cell                  & cell \\
 +
\end{tabular}
 +
</syntaxhighlight>
 +
#:效果为
 +
#:<syntaxhighlight lang=text>
 +
ABC
 +
DEF  GHI
 +
---------
 +
cell cell
 +
</syntaxhighlight>
 +
#tabular 环境第一个参数中使用 <code>p{3cm}</code> 指定单元格的宽度,可用 <code>\newline</code> 手动换行。
 +
 +
用 makecell 宏包:<code>\makecell{ABC\\DEF}</code> 两行间距较大,用 <code>\\[-1ex]</code> 暂时解决。
    
=== <code>\newcommand</code> 和 <code>\newcommand*</code> 的区别 ===
 
=== <code>\newcommand</code> 和 <code>\newcommand*</code> 的区别 ===
第28行: 第50行:  
* <code>\{</code> 能在文本模式和数学模式中使用
 
* <code>\{</code> 能在文本模式和数学模式中使用
 
* <code>\lbrace</code> 只能在数学模式中使用
 
* <code>\lbrace</code> 只能在数学模式中使用
 +
 +
== 宏包 ==
 +
 +
=== ctex ===
 +
 +
汉字字宽被存于 <code>\ccwd</code> 中。<ref>ctex 宏包文档第 1 章第 8 节 8.1 字号与间距</ref>
    
== 参考资料 ==
 
== 参考资料 ==

导航菜单