I want to import the contents of a statistical table from Minitab to a document. To do this, I saved the table's contents in a PDF file and I used the package pdfpages.
Code: Select all
\documentclass[12pt]{article}
\usepackage[square]{natbib}
\usepackage{pdfpages}
\usepackage{tabularx,graphicx,rotating,subfigure,booktabs,multirow}
\begin{table}
\caption{tablecaption}\hline
\includepdf[pages={1}]{tablename.pdf}\hline
\end{table}
%%%%%%%%%Table's content%%%%
\includepdf[pages={1}]{tablename.pdf}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
In the output the table is empty. Howerver, when I use the command
\includepdf[pages={1}]{table name.pdf}
without defining a table the content's appear. What should I do? I think that the operation is possible .