如何删除表格末尾的小提示?

如何删除表格末尾的小提示?

我通过 TablesGenerator.com 生成了一些表格,它们都带有小提示和结尾(看最后一行)。

我该如何摆脱它?这是代码(抱歉格式很糟糕,这是第一篇帖子):

\begin{table}
\caption{Especificações do projeto do conversor \emph{boost} baaseado na 3SSC.}
\begin{tabular}{|l|l|}
\hline
\multicolumn{1}{|c|}{\textbf{Parâmetro}}                                                           & \multicolumn{1}{c|}{\textbf{Valor}}           \\ \hline
Tensão de entrada                                                                                  & $V_{i}$ = 48 V                                 \\ \hline
Potência de saída                                                                                  & $V_{o}$ = 400 V                                \\ \hline
\begin{tabular}[c]{@{}l@{}}Número de enrolamentos secundários \\ no autotransformador\end{tabular} & $P_{o}$ = 1 kW                                 \\ \hline
Razão cíclica nominal                                                                              & $D$=0.76                                        \\ \hline
Ondulação da tensão de saída                                                                       & $\Delta V_{o}$ = 5\% $V_{o}$                  \\ \hline
\begin{tabular}[c]{@{}l@{}}Ondulação da tensão nos capacittores \\ $C_{2}$ e $C_{3}$\end{tabular}  & $\Delta V_{C1}$ = 5\% $V_{C1}$                \\ \hline
Ondulação de corrente no indutor                                                                 & $\Delta L$ = 5\% $I_{i}$                      \\ \hline
Frequência de comutação                                                                            & $f_{s}$ = 25 kHz                               \\ \hline
Indutância L                                                                              & $L$ = 479,23 $\mu$F             \\ \hline
Capacitor $C_{1}$                                                                                  & $C_{1}$ = 2,6 $\mu$F            \\ \hline
Capacitores $C_{2}$ e $C_{3}$                                                                      & $C_{2}$ = $C_{3}$ = 15,2 $\mu$F \\ \hline
\label{Tab:valores_proj}
\end{tabular}
\end{table}

在此处输入图片描述

答案1

如何避免超出垂直规则的问题已在在表格底部获取额外的单元格更早的时候,表格中的列线超出水平线

您的表格中还有其他一些不妥之处需要修正。可能改进的主要内容包括 (a) 允许在第一列自动换行,(b) 在第二列使用自动数学模式,(c) 以一致且专业的方式排版数量及其相关的科学单位,以及 (d) 通过省略所有垂直规则并使用更少但间距适当的水平规则,使表格具有更开放和吸引人的“外观”。请查看以下屏幕截图以了解这些想法的实现。

在此处输入图片描述

\documentclass{article}

\usepackage[T1]{fontenc}
\usepackage[portuguese]{babel} % or 'brazil'?
\usepackage{tabularx} % for 'tabularx' env. and 'X' col. type
\usepackage{ragged2e} % for '\RaggedRight' macro
\newcolumntype{L}{>{\RaggedRight\hangindent=1em\hangafter=1}X}
\renewcommand{\tabularxcolumn}[1]{m{#1}}
\usepackage{booktabs} % for well-spaced horizontal rules
\usepackage{siunitx} % for '\qty' and '\num' macros
\sisetup{output-decimal-marker={,}} % use commas as decimal markers

\begin{document}

\begin{table} 
\centering
\caption{Especificações do projeto do conversor \emph{boost} baaseado na 3SSC.} 
\label{Tab:valores_proj}

\smallskip
\begin{tabularx}{0.75\textwidth}{@{} L >{$}l<{$} @{}} % automatic math mode for 2nd column
\toprule 
Parâmetro & \mbox{Valor} \\ 
\midrule 
Tensão de entrada                  & V_{i} = \qty{48}{\volt} \\  
Potência de saída                  & V_{0} = \qty{400}{\volt} \\  
Número de enrolamentos secundários 
no autotransformador               & P_{0} = \qty{1}{\kilo\watt} \\  
Razão cíclica nominal              & D = \num{0.76} \\  
Ondulação da tensão de saída       & \Delta V_{0} = 5\%\,V_{0} \\  
Ondulação da tensão nos 
capacittores $C_{2}$ e $C_{3}$     & \Delta V_{C1} = 5\% \,V_{C1} \\  
Ondulação de corrente no indutor   & \Delta L = 5\%\,I_{i} \\  
Frequência de comutação            & f_{s} = \qty{25}{\kilo\hertz} \\  
Indutância $L$                     & L = \qty{479,23}{\micro\farad} \\  
Capacitor $C_{1}$                  & C_{1} = \qty{2,6}{\micro\farad} \\  
Capacitores $C_{2}$ e $C_{3}$      & C_{2} = C_{3} = \qty{15,2}{\micro\farad} \\ 
\bottomrule  
\end{tabularx} 

\end{table}

\end{document}

相关内容