Entfernen aller Hlines in von xtable generierten Longtables

Entfernen aller Hlines in von xtable generierten Longtables

Selbst durch die Einstellung behält hline.after = NULLeine vom R-Paket generierte Longtable xtableimmer noch eine H-Linie ganz am Ende der Tabelle bei.

\documentclass{article}

\usepackage{longtable}

\begin{document}

<<results='asis'>>=
require(xtable)
print(xtable(cars[1:20,], caption = 'NO HLINES'), 
      tabular.environment = "longtable", include.rownames = F, 
      caption.placement = "top", include.colnames = FALSE, 
      hline.after = NULL, floating = FALSE)
@

\end{document}

führt zu

\begin{longtable}{rr}
\caption{NO HLINES} \\ 
  4.00 & 2.00 \\ 
  4.00 & 10.00 \\ 
  7.00 & 4.00 \\ 
  7.00 & 22.00 \\ 
  8.00 & 16.00 \\ 
  9.00 & 10.00 \\ 
  10.00 & 18.00 \\ 
  10.00 & 26.00 \\ 
  10.00 & 34.00 \\ 
  11.00 & 17.00 \\ 
  11.00 & 28.00 \\ 
  12.00 & 14.00 \\ 
  12.00 & 20.00 \\ 
  12.00 & 24.00 \\ 
  12.00 & 28.00 \\ 
  13.00 & 26.00 \\ 
  13.00 & 34.00 \\ 
  13.00 & 34.00 \\ 
  13.00 & 46.00 \\ 
  14.00 & 26.00 \\ 
  \hline
\end{longtable}

Antwort1

Sie sollten das Argument booktabs=TRUEim print.xtable-Aufruf hinzufügen

print(xtable(cars[1:20,], caption = 'NO HLINES'), 
  tabular.environment = "longtable", include.rownames = F, 
  caption.placement = "top", include.colnames = FALSE, 
  booktabs = TRUE,
  hline.after = NULL, floating = FALSE)

Ergebnisse:

\begin{longtable}{rr}
\caption{NO HLINES} \\ 
4.00 & 2.00 \\ 
4.00 & 10.00 \\ 
7.00 & 4.00 \\ 
7.00 & 22.00 \\ 
8.00 & 16.00 \\ 
9.00 & 10.00 \\ 
10.00 & 18.00 \\ 
10.00 & 26.00 \\ 
10.00 & 34.00 \\ 
11.00 & 17.00 \\ 
11.00 & 28.00 \\ 
12.00 & 14.00 \\ 
12.00 & 20.00 \\ 
12.00 & 24.00 \\ 
12.00 & 28.00 \\ 
13.00 & 26.00 \\ 
13.00 & 34.00 \\ 
13.00 & 34.00 \\ 
13.00 & 46.00 \\ 
14.00 & 26.00 \\ 
\end{longtable}

verwandte Informationen