minha mesa não fecha completamente todas as fronteiras

minha mesa não fecha completamente todas as fronteiras

usando essas linhas para fazer uma tabela, notei que ela não fecha todas as linhas da borda, e também queria fazer a linha vertical antes do caractere alfa \alpha, grosso ou duplo, só não sei como fazer isso.

aqui está o código

\documentclass[11pt,a4paper,twoside,openright]{report}

\usepackage{setspace}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{tabu}


\pagestyle{empty}



\begin{document}

\begin{table}[H]
\centering
\begin{tabu}{|[1.5pt]c|*{5}{c|}c|[1.5pt]}
\tabucline[1.5pt]{-}
\multicolumn{7}{|[1.5pt]c|[1.5pt]}{\textbf{Model Parameters}} \\ \tabucline[1.5pt]{-}
             D11(Nm) & D12(Nm) & thickness(mm) & $\alpha$ & Corrugation length & Deflection(mm) & Weight \\ \hline
            36 & 35 & 0.5 & 60 & 210 & 0.33 & SR4 \\ \hline 
              36 & 35 & 0.5 & 60 & 210 & 0.33 & SR4  \tabucline[1.5pt]{-}
        \end{tabu}
        \caption{The Parameters of the Model}
        \label{table:t43}
    \end{table}    

\end{document}

Responder1

O OP está faltando \\antes do último \tabuclinecomando.

Qualquer pacote de tabela que eu conheço requer instruções \\for - like (além da primeira linha) \hline(a menos que várias delas ocorram em uma linha)

Para o meu gosto existemtambémmuitas linhas na tabela.

\documentclass[11pt,a4paper,twoside,openright]{report}

%\usepackage{setspace}  % not needed
%\usepackage{graphicx} % not needed
%\usepackage{tabularx} % not needed
\usepackage{tabu}


\pagestyle{empty}



\begin{document}

\begin{table}[H]
  \centering
  \begin{tabu}{|[1.5pt]c|*{5}{c|}c|[1.5pt]}
    \tabucline[1.5pt]{-}
    \multicolumn{7}{|[1.5pt]c|[1.5pt]}{\textbf{Model Parameters}} \\ \tabucline[1.5pt]{-}
    D11(Nm) & D12(Nm) & thickness(mm) & $\alpha$ & Corrugation length & Deflection(mm) & Weight \\ \hline
    36 & 35 & 0.5 & 60 & 210 & 0.33 & SR4 \\ \hline 
    36 & 35 & 0.5 & 60 & 210 & 0.33 & SR4 \\
    \tabucline[1.5pt]{-}
  \end{tabu}
  \caption{The Parameters of the Model}
  \label{table:t43}
\end{table}    

\end{document}

insira a descrição da imagem aqui

informação relacionada