我对 Latex 完全陌生,在简历页面中横向对齐两个组件时遇到了问题。以下是问题的屏幕截图: 虽然在这张截图中可能不明显,但教育程度下面的栏比技能下面的栏略低一点,这让我很抓狂。这是我的 latex 代码
\documentclass[]{resume-openfont}
%--------------------------------------------------------------
% Convenience command - make it easy to fill template
% Create job position command. Parameters: company, position, location, when
\newcommand{\resumeHeading}[4]{\runsubsection{#1}\descript{ | #2}\hfill\location{#3 | #4}\fakeNewLine\NoSpace}
% Create education heading. Parameters: Name, degree, location, when
\newcommand{\educationHeading}[4]{\runsubsection{#1} \location{#3 | #4}\\
\descript{#2}\fakeNewLine}
% Parameters: courses
\newcommand{\courseWork}[1]{\semiBold{Relevant Coursework:} #1}
% Parameters: courses
\newcommand{\teacherAssistant}[1]{\semiBold{Teacher Assistant (TA):} #1}
% Command to create smaller heading: Parameters: title, when
\newcommand{\resumeSubheading}[2]{\minorSection{#1}\hfill\location{#2}\fakeNewLine\NoSpace}
%--------------------------------------------------------------
\begin{document}
\noindent
\begin{minipage}[t]{0.48\linewidth}
\section{Skills}
\textcolor{ProcessBlue}{\rule{8.5 cm}{1mm}}
\begin{resumeSkillList}
\small{\item{
\doubleItem{Languages:}{Python, C, Java, Racket, HTML, CSS, Javascript}%
{}{}
\\
\doubleItem{Technologies:}{Git, ReactJS, Firebase}%
{}{}
}}
\end{resumeSkillList}
\end{minipage}%
\hfill
\noindent
\begin{minipage}[t]{0.48\linewidth}
\section{Education}
\textcolor{ProcessBlue}{\rule{8cm}{1mm}} \newline
\educationHeading{University of Bananaland}{BSc. Banana , GPA: banana \%}{}{2020-2025}
\end{minipage}%
\hfill
\end{document}