在线创建LaTeX表格的方法

1.参考链接-在线LaTeX表格的制作

2.例子:可直接在里面操作(包括文字以及单元格合并,线框等)

实现的表格

制作在线latex表格网址:https://www.latex-tables.com/

在线创建LaTeX表格的方法_第1张图片

相应的代码:

% \usepackage{multirow}


\begin{table}
\centering
\begin{tabular}{l|l|ll} 
\hline
\multicolumn{2}{l|}{~}                        & 0     & 1      \\ 
\hline
\multicolumn{2}{l|}{Price (p)}                & 2.00  & 3.00   \\
\multicolumn{2}{l|}{Commission (w)}           & 5.00  & 1.50   \\
\multicolumn{2}{l|}{Effort1 (e1)}             & 1.00  & 2.30   \\
\multicolumn{2}{l|}{Effort2 (e2)}             & 0.60  & 0.10   \\
\multicolumn{2}{l|}{Demand1 (D1)}             & 3.00  & 6.00   \\
\multicolumn{2}{l|}{Demand2 (D1)}             & 4.00  & 6.00   \\ 
\hline
\multirow{2}{*}{The first profit}  & with~    & 20.00 & 9.00   \\
                                   & without~ & 17.00 & 17.00  \\ 
\hline
\multirow{2}{*}{The second profit} & with~    & 5.00  & 23.00  \\
                                   & without~ & 4.00  & 4.00   \\
\hline
\end{tabular}
\end{table}

你可能感兴趣的:(Latex经验,经验分享,latex)