No código a seguir, descrevendo uma tabela. A segunda linha horizontal parece borrar a linha do texto.
Como posso corrigir isso?
A questão é, então: como faço para aumentar o espaçamento entre a linha e o texto?
\resheading{\textbf{ACADEMIC DETAILS} }\\[\lsep]
\vspace{5mm} \vfill
%\begin{table}[ht!]
%\begin{center}
\indent \begin{tabular}{ l @{\hskip 0.15in} l @{\hskip 0.20in} l @{\hskip 0.20in} l @{\hskip 0.20in} l }
\hline
\vspace{0.1mm}
\textbf{Year} &\textbf{Degree} & \textbf{Institute} & \textbf{CGPA/\%} \\
\hline
2015- Present&B.Tech Electrical and Electronics Engineering & VIT Vellore & 9.69 CGPA \\
2015 & 12th CBSE Board Examination & Kendriya Vidyalaya & 94.8\%\\
2013 & 10th CBSE Board Examination & Kendriya Vidyalaya & 10 CGPA\\
\hline
\end{tabular}
%\end{center}
%\end{table}
\vspace{2mm}
%\resheading{\textbf
Responder1
Outra solução consiste em definir ummínimopreenchimento vertical na parte superior e inferior das células com o cellspace
pacote:
\documentclass{article}
\usepackage[top=0.75in, bottom=0.75in, left=0.55in, right=0.85in]{geometry}
\usepackage{booktabs}
\usepackage{cellspace}
\setlength\cellspacetoplimit{4pt}
\setlength\cellspacebottomlimit{4pt}
\begin{document}
\centering
\begin{tabular}{@{}*{4}{Sl}@{}}
\toprule
\textbf{Year} &\textbf{Degree} & \textbf{Institute} & \textbf{CGPA/\%}\\
\midrule
2015 -- present & B.Tech Electrical and Electronics Engineering & VIT Vellore & 9.69 CGPA\\
2015 & 12th CBSE Board Examination & Kendriya Vidyalaya & 94.8\%\\
2013 & 10th CBSE Board Examination & Kendriya Vidyalaya & 10 CGPA\\
\bottomrule
\end{tabular}
\end{document}
Responder2
ComoAlan Munn também sugeriu em seu comentário: Não se preocupe e deixe booktabs
cuidar do seu problema:
\documentclass{article}
\usepackage[top=0.75in, bottom=0.75in, left=0.55in, right=0.85in]{geometry}
\usepackage{booktabs}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{\dimexpr\linewidth-15pt}{@{}lXll@{}}
\toprule
\textbf{Year} &\textbf{Degree} & \textbf{Institute} & \textbf{CGPA/\%}\\
\midrule
2015 -- present & B.Tech Electrical and Electronics Engineering & VIT Vellore & 9.69 CGPA\\
2015 & 12th CBSE Board Examination & Kendriya Vidyalaya & 94.8\%\\
2013 & 10th CBSE Board Examination & Kendriya Vidyalaya & 10 CGPA\\
\bottomrule
\end{tabularx}
\end{document}
Responder3
Assim?
Como sugerido emAlan Munnem seu comentário, as regras do booktabs
pacote oferecem mais espaço vertical ao redor do conteúdo das células. Além disso, \arraystretch
foi aumentado e removido o espaçamento manual excedente entre colunas.
{\renewcommand\arraystretch{1.2}
\begin{tabular}{ l l l l l }
\midrule
\textbf{Year}
& \textbf{Degree} & \textbf{Institute} & \textbf{CGPA/\%} \\
\midrule
2015- Present
& B.Tech Electrical and Electronics Engineering
& VIT Vellore & 9.69 CGPA \\
2015 & 12th CBSE Board Examination
& Kendriya Vidyalaya & 94.8\% \\
2013 & 10th CBSE Board Examination
& Kendriya Vidyalaya & 10 CGPA \\
\midrule
\end{tabular}
}