[Tex/LaTex] Latex Tables in ipe

ipe

I'm making a presentation in ipe. I have a table from a .tex document that I would like to include in ipe document. Is there any way to use the tabular environment or something similar in ipe?

Best Answer

I was copying and pasting the tex from a paper, which included \table{} which pdflatex complained about, saying it's not in an outer par environment. By just using tabular, ipe was happy to include it, after I cleaned up some other issues that the latex code also had.

\begin{tabular}{|l l|l|l|} 
\hline 
Query Type  &                 &  Query Time         & Space   \\ \hline
Orthogonal: &   Standard  & $O(\log^{d-1} n)$ & $O(n \log^{d-1} n)$     \\  
    &  SD fixed $m$                  & $O(m \cdot \log ^d n)$     &  $O(m \cdot n \log^{d-1} n)$     \\
    &  SD variable $m$               & $O(m \cdot \log ^d n)$     &  $O(n \log ^d n)$       \\ 
    &  SD size est.                  & $O(\log ^{d+1} n \log U)$  & $O(n \log^{d} n \log U)$         \\ \hline
\end{tabular}
Related Question