圣华
圣华
这家伙很懒,什么也没写!

注册于 3年前

回答
9
文章
0
关注者
0

https://www.jianshu.com/p/3a833e484214

LATEX中的行距是与字号直接相关的。

基本行距:在设置字号时,同时设置了基本行距为文字大小的1.2倍。
行距:基本行距乘上一个因子。对article等标准文档类来说,因子默认为1;对ctexart等中文文档类来说,因子默认为1.3,即行距是字号大小的倍。
以字号为小四号(大小为12bp)、设置20磅行距为例,说明几种方法:

zihao{-4}linespread{1.389}selectfont
其中,linespread{}设置行距为基本行距的多少倍,即上面行距定义中提到的因子。此时,字号大小为12bp,基本行距为,欲设置行距为20bp,则因子为。
zihao{-4}setlength{baselineskip}{20bp}
行距为baselineskip,这是直接设置行距的方法。
fontsize{12bp}{15.3846153846bp}selectfont
命令fontsize{12bp}{15.3846153846bp}设置的是字号和基本行距,对ctexart等中文文档,由于行距为基本行距的1.3倍,因此基本行距为
zihao{-4}setstretch{1.389}导言区需加载宏包usepackage{setspace}但是,行不通!!!!!!!
根据刘海洋的《LATEX入门》,应该和zihao{-4}linespread{1.389}selectfont的效果一样的啊。

使用\usepackage{pdflscape}宏包横版排版的

\begin{landscape}
    表格
\end{landscape}

环境

\begin{equation}
\Omega_i^2 =  \left\{ 
\begin{aligned}
(x_i,r_i) |  (\alpha_i + \beta_i\sum x_i) - R_i    
&=  r_i^{buy}+r_i^{penalty},  \text{if}  (\alpha_i +\beta_i\sum x_i) \geq R_i; \\
  R-i - (\alpha_i + \beta_i\sum x_i)   &= 
   r_i^{sell}+r_i^{surplus},
  \text{if}  (\alpha_i +\beta_i\sum x_i) \leq R_i 
\end{aligned}  \right.
\end{equation}

documentclass{article}
usepackage{tikz}
usepackage[active,tightpage]{preview}
PreviewEnvironment{tikzpicture}
setlengthPreviewBorder{5pt}%
usetikzlibrary{trees}
begin{document}
begin{tikzpicture}[edge from parent fork right,grow=right,level distance=2cm,level 1/.style={sibling distance=1.5cm},level 2/.style={sibling distance=.5cm}]%

node[text width=2cm] {Idea General}
child {node {A}
child {node {1}}
child {node {2}}
child {node {3}}}
child {node {B}
child {node {AA}}
child {node {BB}}
child {node {CC}}
};
end{tikzpicture}
end{document}

1、大家可以用 tfrac{}{}来替代

2、我重定义了一个dfrac,写为如下:

renewcommand{dfrac}[2]{{
renewcommand{arraystretch}{1.375}
begingroupdisplaystyle
rule[0pt]{0pt}{11pt}#1endgroup%
overdisplaystylerule[-3pt]{0pt}{11pt}#2
}}%
http://blog.sina.com.cn/s/blog_5e16f1770100nj39.html

documentclass[10pt,UTF8]{ctexbeamer}
begin{document}
begin{frame}
begin{itemize}[<+-| alert@+>]

item 第一条

item 第二条

item 第三条

end{itemize}
end{frame}
end{document}

发布
问题