将 latex 表加载到 r markdown

将 latex 表加载到 r markdown

我有一些通过 stata 生成的乳胶表。

我正在尝试将它们合并到 r markdown 中,以便我可以创建包含所有图形的综合 pdf(一些在 r markdown 中生成,一些以 latex 的形式生成)。

我有许多像这样的 tex 文件,想知道如何将乳胶代码加载到 R markdown 中。

    \documentclass{article}
    \usepackage[margin=.25in]{geometry}
    \begin{document}
    \begin{table}[htbp]\centering
    \def\sym#1{\ifmmode^{#1}\else\(^{#1}\)\fi}
    \caption{Share Ownership for 1927 (Third Degree Connections, No Weights)}
    \begin{tabular}{l*{5}{c}}
    \hline\hline
                &\multicolumn{1}{c}{(1)}         &\multicolumn{1}{c}{(2)}         &\multicolumn{1}{c}{(3)}         &\multicolumn{1}{c}{(4)}         &\multicolumn{1}{c}{(5)}         \\
    \hline
    No. of Firms&      -0.002         &      -0.011         &      -0.015         &      -0.011         &      -0.015         \\
                &     (0.018)         &     (0.025)         &     (0.026)         &     (0.025)         &     (0.026)         \\
                &    [-0.000]         &    [-0.000]         &    [-0.000]         &    [-0.000]         &    [-0.000]         \\
    Poors Dummy &       0.653\sym{***}&       0.668\sym{***}&       0.641\sym{***}&       0.657\sym{***}&       0.632\sym{***}\\
                &     (0.166)         &     (0.167)         &     (0.167)         &     (0.167)         &     (0.167)         \\
                &     [0.002]\sym{***}&     [0.002]\sym{***}&     [0.002]\sym{***}&     [0.002]\sym{***}&     [0.002]\sym{***}\\
\hline\hline
\end{tabular}
\end{table}
\end{document}

相关内容