다음 코드에서는 테이블을 설명합니다. 두 번째 가로 줄은 텍스트 줄로 인해 얼룩진 것처럼 보입니다.
어떻게 바로잡을 수 있나요?
그렇다면 문제는 줄과 텍스트 사이의 줄 간격을 어떻게 늘리나요?
\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
처럼Alan Munn도 그의 의견에서 제안했습니다.: 걱정하지 마시고 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}
}