由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
TeX版 - Lyx Table format
相关主题
询问在scientific workplace里面用beamer插入图片one column abstract, two column text?
求教一个tex中插入eps图片的问题问一个排版图片的问题
怎么让minipage里的多图竖排列并居中?Table 分两个 column 的问题
请教高手:subfig 排三个图latex 表格自动排版的问题
如何让图片在beamer slide里面占据一角,然后在旁边写字add caption above floating table using floatflt
怎么控制表格里行的高度?写在文中的table怎么会跑到页首上去?
请问把tabular里两个column设成等宽的命令help on subtable label
multicols的问题Beamer: resizing figure and table
相关话题的讨论汇总
话题: tabular话题: textwidth话题: table话题: lyx话题: format
进入TeX版参与讨论
1 (共1页)
o******e
发帖数: 10
1
I have a table with the following tex code
\begin{tabular*}{1\textwidth}{ccc}
1 & 2 & 3 \\
1 & 2 & 3 \\
\end{tabular*}
i.e., I want to format the table so that the width of the table is equal to
1 textwidth.
Now I use windows lyx. How can I format this in lyx?
Thanks
o******e
发帖数: 10
2
sorry, I meant
\begin{tabular*}{1\textwidth}{@{\extracolsep{\fill}}ccc}
1 & 2 & 3 \\
1 & 2 & 3 \\
\end{tabular*}

to

【在 o******e 的大作中提到】
: I have a table with the following tex code
: \begin{tabular*}{1\textwidth}{ccc}
: 1 & 2 & 3 \\
: 1 & 2 & 3 \\
: \end{tabular*}
: i.e., I want to format the table so that the width of the table is equal to
: 1 textwidth.
: Now I use windows lyx. How can I format this in lyx?
: Thanks

s****n
发帖数: 80
3
p{.33\textwidth} for each column
o******e
发帖数: 10
4
Thanks.
I have figured out an easier way.
I redefine the tabular environment in the preamble. Most of the times I want
the table to be as wide as 1\textwidth;
\renewenvironment{tabular}
{%
\begin{tabular*}{1\textwidth}
}
{%
\end{tabular*}%
}
Then add the \extracolsep{\fill}} to the tex argument in the first column of
each table. This way, I don't have to manually assign the width of a column
. The rubber space should take care of it.
1 (共1页)
进入TeX版参与讨论
相关主题
Beamer: resizing figure and table如何让图片在beamer slide里面占据一角,然后在旁边写字
怎么改变table的大小?怎么控制表格里行的高度?
怎么样让图片在固定的地方出现?请问把tabular里两个column设成等宽的命令
Table 的黑粗线是怎么弄出来的?multicols的问题
询问在scientific workplace里面用beamer插入图片one column abstract, two column text?
求教一个tex中插入eps图片的问题问一个排版图片的问题
怎么让minipage里的多图竖排列并居中?Table 分两个 column 的问题
请教高手:subfig 排三个图latex 表格自动排版的问题
相关话题的讨论汇总
话题: tabular话题: textwidth话题: table话题: lyx话题: format