-
Hello! I found it difficult to achieve line breaks in a
An example: \begin{table}[ht]
\begin{tabular}{ccccc}
\toprule
\diagbox{backbone}{Indicators} & frame [email protected] & video [email protected] & video [email protected] & \makecell{video mAP\\ @0.5:0.95} \\ \midrule
ResNet18&87.29&99.85&66.29&21.20\\
DLA34&\textbf{90.16}&\textbf{100}&\textbf{78.23}&\textbf{24.81}\\
\bottomrule
\end{tabular}
\end{table} This question seems similar to #9536. Do I also need to write a lua filter myself? In addition, it seems that diagbox is also not supported. Does it also need to be implemented through a lua filter for customization? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
What about putting a |
Beta Was this translation helpful? Give feedback.
This does give me a docx table with a break in it (paragraph break):
I'm not sure you can use
\\
to get a line break in aminipage
as you're doing? Can you confirm by running pdflatex on that? If it works, pandoc should support it. Another alternative in TeX seems to be\newline
, which pandoc should but does not currently support. So I just used a paragraph break in the above.