![mi mesa no cierra completamente todos los límites](https://rvso.com/image/309871/mi%20mesa%20no%20cierra%20completamente%20todos%20los%20l%C3%ADmites.png)
Usando estas líneas para hacer una tabla, noté que no cierra todas las líneas de borde, y también quería hacer la línea vertical antes del carácter alfa \alpha
, gruesa o doble, pero no sé cómo hacerlo.
aquí está el 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}
Respuesta1
Al OP le falta un \\
antes del último \tabucline
comando.
Cualquier paquete de tablas que conozco requiere \\
(aparte de la primera línea) \hline
declaraciones similares a for (a menos que aparezcan varias de ellas seguidas)
Para mi gusto haytambiénMuchas líneas en la tabla.
\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}