Rendering latex tables in rmarkdown

0

I am creating an html file from a latex file that I already have. To do this, I would like to render in html (using the Rstudio format Rmd) the complex table below that uses \usepackage{multirow} in the latex file preamble. 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 have already searched the internet but I have not found anything similar, so I understand, latex tables are not easily rendered in html and I have to rebuild the whole table in markdown. Is that right, or do I have some more automated way of doing this? Thank you!

    
asked by anonymous 11.09.2016 / 19:04

1 answer

1

After much searching, I did not find anything related to the tabular and table environments, but I discovered that markdown renders the array environment, I still have not figured out how to add the \multirow and \multicolumn 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}
    
12.09.2016 / 03:34