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!