En el siguiente código, se describe una tabla. La segunda línea horizontal parece difuminarse con una línea de texto.
¿Cómo puedo corregir eso?
La pregunta es, entonces: ¿cómo aumento el interlineado entre la línea y el 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
Respuesta1
Otra solución consiste en definir unmínimorelleno vertical en la parte superior e inferior de las celdas con el cellspace
paquete:
\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}
Respuesta2
ComoAlan Munn también sugirió en su comentario: No te preocupes y deja que booktabs
nos encarguemos de tu 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}
Respuesta3
¿Como esto?
Como se sugiere enAlan Munnen su comentario, las reglas del booktabs
paquete brindan más espacio vertical alrededor del contenido de las celdas. Además de esto, \arraystretch
se aumenta y se elimina el espacio manual sobrante entre columnas.
{\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}
}