我想要 LATEX 格式的这张表。请帮忙

我想要 LATEX 格式的这张表。请帮忙

在此处输入图片描述

我想要这个 LATEX 表格。请帮我。我制作了简单的表格,但无法在一行中添加更多单元格。非常感谢你。

答案1

@Ch Qasim 如果问题只是添加更多行,我为您的表格准备了一个预制件。

\documentclass{article}

\usepackage{graphicx}

\begin{document}
    \begin{table}[]
        \centering
        \resizebox{\textwidth}{!}{%
            \begin{tabular}{|l|l|l|l|l|l|l|l|}
                \hline
                Ref & Manufactures   & Models & \begin{tabular}[c]{@{}l@{}}DC \\ Motor \\ (Brushed)\end{tabular} & \begin{tabular}[c]{@{}l@{}}AC \\ Induction \\ Motor\end{tabular} & \begin{tabular}[c]{@{}l@{}}DC \\ (Brushless) \\ Motor\end{tabular} & \begin{tabular}[c]{@{}l@{}}PM-Sync \\ Reluctance \\ Motor \\ (IPMSynRM)\end{tabular} & \begin{tabular}[c]{@{}l@{}}Permanent \\ Magnet-Sync. \\ Motor (PMSM)\end{tabular} \\ \hline
                & Toyota         &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
                & TESLA          &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
                & Nissan         &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
                & Porsche        &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
                & Audi           &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
                & BMW            &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
                & General Motors &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
                & Fiat Panda     &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
                & KIA            &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
                & Ather Energy   &        &                                                                  &                                                                  &                                                                    &                                                                                      &                                                                                   \\ \hline
            \end{tabular}%
        }
    \end{table}
\end{document}

如果需要添加更多行,只需使用& & & & & & & \\ \hline

此外,对于未来的表格,我找到了一个可能对你有用的在线工具这里

在此处输入图片描述

相关内容