如何使日期信息与名称信息正确对齐?

如何使日期信息与名称信息正确对齐?

我希望日期信息与我的名字一致,并生成类似于在此处输入图片描述

我使用了以下代码

这会导致日期显示略有偏移(我想知道为什么日期显示在名称上方)。有人能帮我将其与名称对齐吗?

\documentclass[margin,line,a4paper,11pt]{resume}
\pdfinfo{
   /Author (Divya K S)
   /Title  (Divya's Resume)
   %/   CreationDate (D:20040502195600)
   /Subject (Resume)
   /Keywords (Divya, Resume)
}

\usepackage{siunitx}
    
\begin{document}
\name{\Large Divya K S}
\begin{flushright}
    \today
\end{flushright}
\end{resume}
\end{document}

可以找到 resume.cls 文件 https://drive.google.com/file/d/1OhGcmRPzHKPvFserZmEjrkfQWFpS1vQS/view?usp=sharing

答案1

目前还不清楚这个用法在什么情况下使用,例如是什么导致了文本下方出现一条线。但类似这样的方法可能会有效(同样,取决于上下文)。

\name{{\Large Divya K S}\hfill \today}

答案2

我找到了解决这个问题的办法。如果有更好的方法请告诉我:

更新了 resume.cls 的代码片段

\def\namefont{\large\bf}
\def\@linename{\begingroup
\def\\{, }
{\namefont\@name}
**\hspace{0.9\linewidth}\today**
\vskip 2pt
\fullline
\vskip 2pt

相关内容