使用 Supertabular 的两个 TCCV 部分未内联的列

使用 Supertabular 的两个 TCCV 部分未内联的列

我有两个独立的部分,都使用我的新版本,\tableentry我很困惑为什么这两个部分的对齐方式不同。任何指示或想法都将不胜感激!

我很困惑为什么这两个表格条目不是内联的两个不同部分

这是我的主文件代码

    \begin{supertabular}{rl} % Start a table with two columns, the table will ensure everything is aligned

    %------------------------------------------------

    \tableentry{Beginner}{\LaTeX, MiniTab, ExtendSIM, Vulcan}{spaceafter}

    %------------------------------------------------

    \tableentry{Intermediate}{Excel, Python}{}
    \tableentry{}{Microsoft Windows}{}
    \tableentry{}{Computer Hardware \& Support}{spaceafter}

    %------------------------------------------------

    \tableentry{Expert}{Perl, Unix}{spaceafter}

    %------------------------------------------------

\end{supertabular}

%----------------------------------------------------------------------------------------
%   COMMUNICATION SKILLS
%----------------------------------------------------------------------------------------

\section{Language Abilities}
% Example \tableentry{} command to add another line:

%\tableentry{Heading}{Content}{spaceafter}


\begin{supertabular}{rl} % Start a table with two columns, the table will ensure everything is aligned

    %------------------------------------------------

    \tableentry{French}{Working Proficiency}{spaceafter}
%   \tableentry{}{}{spaceafter}

    %------------------------------------------------

    \tableentry{Spanish}{Working Proficiency}{spaceafter}
%   \tableentry{}{}{spaceafter}

    %------------------------------------------------

    \tableentry{Russian}{Fluent}{spaceafter}
%   \tableentry{}{}{spaceafter}

    %------------------------------------------------

    \tableentry{English}{Fluent}{spaceafter}
%   \tableentry{}{}{spaceafter}

    %------------------------------------------------

这是我的表格输入命令的文档结构代码

\newcommand{\tableentry}[3]{
    \textsc{#1} & #2\expandafter\ifstrequal\expandafter{#3}{}{\\}{\\[6pt]} % 

相关内容