В следующем коде, описывающем таблицу, вторая горизонтальная линия, кажется, размазана строкой текста.
Как я могу это исправить?
Тогда возникает вопрос: как увеличить интервал между строкой и текстом?
\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
решение1
Другое решение состоит в определенииминимальныйвертикальные отступы сверху и снизу ячеек с cellspace
пакетом:
\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}
решение2
КакАлан Манн также предположил в своем комментарии: Не волнуйтесь и позвольте нам booktabs
позаботиться о вашей проблеме:
\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}
решение3
Так?
Как предложено вАлан Маннв его комментарии, правила из booktabs
пакета дают больше вертикального пространства вокруг содержимого ячеек. Кроме того, \arraystretch
увеличивается и удаляется избыточный ручной интервал между столбцами.
{\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}
}