Render latex tables in rmarkdown

Asked

Viewed 608 times

0

I’m creating an html file from a latex file I already have. For this, I would like to render in html (using Rstudio’s Rmd format) the complex table below that uses \usepackage{multirow} in the vicinity of the latex file. How to do this?

\begin{table}[!h]
\centering
\caption{Variáveis consideradas no estudo com suas respectivas categorias}
\label{tab1}
\begin{tabular}{c|c|c}
\hline
Variáveis             & Categorias &  Descrição \\
\hline
\multirow{2}{*}{Y}    &  0&  Morte registrada como causas distintas de homicídio\\
                      &  1&  Morte registrada como homicídio\\
                                        \hline
\multirow{2}{*}{S}    &  1&  Masculino\\
                      &  2&  Feminino\\
                                            \hline
\multirow{4}{*}{R}    &  1&  Raça/Cor Branca\\
                      &  2&  Raça/Cor Negra\\
                      &  4&  Raça/Cor Parda\\
                      &  5&  Raça/Cor Indígena\\
                                            \hline
\multirow{5}{*}{ESC}  &  1&  Nenhum estudo\\
                      &  2&  1 a 3 anos de estudo\\
                      &  3&  4 a 7 anos de estudo\\
                      &  4&  8 a 11 anos de estudo\\
                      &  5&  12 ou mais anos de estudo\\
                                            \hline
          I           & Idade (Contínua) &15 a 17 anos \\
                    \hline
\end{tabular}
\end{table}

I’ve looked on the internet but found nothing similar, so I understand, latex tables are not easily rendered in html and I must rebuild the entire table in markdown. Is that right, or do I have some more automated way to do it? Thanks in advance!

1 answer

1


After a lot of research, I found nothing related to environments tabular and table, but found that markdown renders the environment array, I haven’t figured out how to add the commands yet \multirow and \multicolumn, I’ll leave here the code I’m using:

\begin{array}{c|c|c}
\hline
\textrm{Variáveis}             &\textrm{ Categorias} &\textrm{  Descrição} \\
\hline
        \textrm{Y}&  0&  \textrm{Morte registrada como causas distintas de homicídio}\\
                  &  1&  \textrm{Morte registrada como homicídio}\\
                                        \hline
   \textrm{S}     &  1&  \textrm{Masculino}\\
                  &  2&  \textrm{Feminino}\\
                                        \hline
   \textrm{R}     &  1&  \textrm{Raça/Cor Branca}\\
                  &  2&  \textrm{Raça/Cor Negra}\\
                  &  4&  \textrm{Raça/Cor Parda}\\
                  &  5&  \textrm{Raça/Cor Indígena}\\
                                        \hline
    \textrm{ESC}  &  1&  \textrm{Nenhum estudo}\\
                  &  2&  \textrm{1 a 3 anos de estudo}\\
                  &  3&  \textrm{4 a 7 anos de estudo}\\
                  &  4&  \textrm{8 a 11 anos de estudo}\\
                  &  5&  \textrm{12 ou mais anos de estudo}\\
                                        \hline
      \textrm{I}  & \textrm{Idade (Contínua)} &\textrm{15 a 17 anos} \\
                \hline
\end{array}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.