JDMCreator / LaTeXTableEditor

readme
MIT License
141 stars 14 forks source link

missing \\ in the following example #94

Open bsplonka opened 5 months ago

bsplonka commented 5 months ago

Describe the bug A clear and concise description of what the bug is. missing \ in the following example

Answer the following questions

  1. Which browser are you using: Safari

JSON code

Add the JSON code generated by the editor. To do so, click on "File > Generate JSON" at the top left corner of the editor. It will allow anyone to reproduce the table and any options you selected. Beware of any sensitive or confidential information in your table, as it will be part of the JSON code:

Your JSON code here.

Related LaTeX code

Insert any related LaTeX code here:

It should be:
\begin{table}
\centering
\begin{tabular}{llll}
 & \begin{tabular}[c]{@{}l@{}}\textbf{a}\\b\\c\end{tabular} &  &   \\
 &                                                        &  &   \\
 &                                                        &  &   \\
 &                                                        &  &  
\end{tabular}
\end{table}
but it is 
\begin{table}
\centering
\begin{tabular}{llll}
 & \begin{tabular}[c]{@{}l@{}}\textbf{a}b\\c\end{tabular} &  &   \\
 &                                                        &  &   \\
 &                                                        &  &   \\
 &                                                        &  &  
\end{tabular}
\end{table}

Otherwise really good work 👍👍