English 中文(简体)
1. 移除一条延后线的多科朗线
原标题:Remove multicolumn line in one line latex
  • 时间:2022-12-26 12:27:52
  •  标签:
  • latex

我有以下表格:

egin{table}[h!]
caption{Top 5 letras menos frequentes retornadas pelo método emph{Lossy Counter} quando se considera $e$ como $0.1, 0.01, 0.001$, Lossy($e$), comparando com as letras menos frequentes retornadas pelo método emph{Exact Counter} - 	extit{O Livro de Cesário Verde}}
label{e_lossy}

esizebox{columnwidth}{!}{%
egin{tabular}{| *{9}{c|}}
hline
 ackslashbox{Top 5}{Counter} & multicolumn{2}{c|}{Exact} & multicolumn{2}{c|}{Lossy (0.1)} & multicolumn{2}{c|}{Lossy (0.01)} & multicolumn{2}{c|}{Lossy (0.001)}\ hline
 1 & K & 4 & V & 340 & Y & 1 & Y & 47  \ hline
 2 & Y & 54 & P & 1426 & X & 72 & X & 155 \hline
 3 & X & 155 & L & 2091 & J & 102 & J & 208 \ hline
 4 & J & 28 & C & 2527 & Z & 325 & Z & 344 \ hline
 5 & Z & 344 & T & 2833 & F & 701 & F & 701 \ hline
 Nº Letras & 25 &  & 15 & . & 24 & . & 24 & . \ hline
end{tabular}%
}
end{table}

“entergram

在最后一行,即诺托拉斯线,我只需要一栏,而不是一栏,而不是一栏。

NºLetras | 25 | .| 15 | . | 24 | . | 24 | . |

我本希望

NºLetras | 25 | 15 | 24 | 24 |

如果所有准确栏有25个,所有损失栏有15个(0.01)等。

如果我不说问题很好的话,我会抱歉。

最佳回答
  • 和你第一行一样,你可以使用<条码>多栏<>条码”,将两间牢房合并起来。

  • 您永远不应使用<代码> esize Box 包含案文的内容。 这将使结果极差。


documentclass{article}

usepackage{diagbox}

egin{document}
egin{table}[h!]
caption{Top 5 letras menos frequentes retornadas pelo método emph{Lossy Counter} quando se considera $e$ como $0.1, 0.01, 0.001$, Lossy($e$), comparando com as letras menos frequentes retornadas pelo método emph{Exact Counter} - 	extit{O Livro de Cesário Verde}}
label{e_lossy}
%
esizebox{columnwidth}{!}{%
egin{tabular}{| *{9}{c|}}
hline
 ackslashbox{Top 5}{Counter} & multicolumn{2}{c|}{Exact} & multicolumn{2}{c|}{Lossy (0.1)} & multicolumn{2}{c|}{Lossy (0.01)} & multicolumn{2}{c|}{Lossy (0.001)}\ hline
 1 & K & 4 & V & 340 & Y & 1 & Y & 47  \ hline
 2 & Y & 54 & P & 1426 & X & 72 & X & 155 \hline
 3 & X & 155 & L & 2091 & J & 102 & J & 208 \ hline
 4 & J & 28 & C & 2527 & Z & 325 & Z & 344 \ hline
 5 & Z & 344 & T & 2833 & F & 701 & F & 701 \ hline
 Nº Letras & multicolumn{2}{c|}{25} & multicolumn{2}{c|}{15} & multicolumn{2}{c|}{24} & multicolumn{2}{c|}{24} \ hline
end{tabular}%
%}
end{table}

end{document}
问题回答

对于乘数栏,将采用<代码>egin{2}。 此处,2系指一页的两栏。

现在要停止:

end{multicols}
This is in a single column area
egin{multicols}{2}




相关问题
Effective Version Control for Slides

I have to maintain a huge set of training material in forms of slides. At a first glance, I ve noticed there s no support for version control in OpenOffice OOImpress (but I might be wrong on this). ...

Maths in LaTex table of contents

I am trying to add a table of contents for my LaTex document. The issue I am having is that this line: subsubsection{The expectation of (X^2)} Causes an error in the file that contains the ...

Using vim s `gqap sometimes indents unusually

For the life of me, I cannot figure out the cause of this: when writing in LaTeX documents, I like to keep my line width to maximum of 80 characters. As such, I will execute the vim command gqap and ...

aligning math equations in Latex

I am trying to align the following equations around the equal sign. What can I do? Thanks! I am using the AMSMath package $$mddot{x}_{1}-K(x_{2}+x_{12})+C(dot{x}_{12}+dot{x}_{2})+2Cdot{x}_{1} ...

LaTeX output does not update

I have just begun using LaTeX. I am working in Windows and am using TeXnicCenter as my editor. When I build and output, having the following code: documentclass{article} egin{document} This is a ...

How to put line break in a math

I d like to express the following sentence (source_location is also italic, it s not correctly rendered): Each entry has a list of tuple: < source_location, R/W, trip_counter, occurrence, killed ...

热门标签