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!