如何从单独的文件中读取表的主体?

时间:2014-10-06 08:04:34

标签: input latex

我想从单独的文件中读取/输入表的主体。 但它失败了。 我该怎么做。 以下是一个例子

主要tex文件: Main.tex

%main.tex
\documentclass{article}
\begin{document}

Table test.

1. Insert a full table

\begin{tabular}{|c|c|}
\hline
a & b \\
\hline
c & d \\
\hline
\end{tabular}

2. Input the body of table from a seperate file

\begin{tabular}{|c|c|} 
\input{table}
\end{tabular}

\end{document}

表正文: table.tex

%table.tex
\hline
a & b \\
\hline
c & d \\
\hline 

1 个答案:

答案 0 :(得分:1)

table.tex内处理宏中的tabular中的表内容。为此,请使用catchfile package

enter image description here

%main.tex
\documentclass{article}
\usepackage{filecontents,catchfile}
\begin{filecontents*}{table.tex}
%table.tex
\hline
a & b \\
\hline
c & d \\
\hline 
\end{filecontents*}

\begin{document}

Table test.

1. Insert a full table

\begin{tabular}{|c|c|}
  \hline
  a & b \\
  \hline
  c & d \\
  \hline
\end{tabular}

2. Input the body of table from a seperate file

\CatchFileDef{\mytable}{table.tex}{}% table.tex > \mytable
\begin{tabular}{|c|c|} 
  \mytable
\end{tabular}

\end{document}