带有 paracol 的列中的右对齐部分

带有 paracol 的列中的右对齐部分

我是 LaTeX 新手,正在尝试制作简历。我的简历中有一个部分,我希望该部分有两列。这两列中将有一个子部分和一个子子部分。我需要第二列中的子部分和子子部分右对齐。我正在使用该paracol包来实现列环境。

这是 MWE 代码

\documentclass{article}

\usepackage[margin=1in]{geometry}

\usepackage{titlesec}

\usepackage{titling}

\usepackage{paracol}

\titleformat{\section}
{\huge\bfseries\lowercase} 
{} 
{0em} 
{} 
[\titlerule]

\titleformat{\subsection}
{}
{$\bullet$}
{0.25em}
{}

\titleformat{\subsubsection}
{}
{}
{0.8em}
{}

\renewcommand{\maketitle}
{\begin{center}


{\huge\bfseries\theauthor}

\vspace{0.25em}

example address --- [email protected]
\end{center}
}


\newcommand{\datedsubsection}[2]{ \subsection[#1] {#1 \hfill #2} }

\begin{document}

\title{R\'esum\'e}
\author{John Doe}
\maketitle



\section{example section}

\begin{paracol}{2}
    
    \switchcolumn[0]
    
    \subsection{example subsection 1}
    
    
    
    
    \subsubsection{example subsubsection 1}
    
    \switchcolumn[1]


    
    \subsection{example subsection 2} 
    
    \subsubsection{example subsubsection 2} 
    

\end{paracol}

\thispagestyle{empty}

\end{document}

这是此代码生成的图片示例图片

我只需要第二列右对齐。我尝试使用环境flushright,但只会产生如下结果:使用 flushright 时的示例图片

任何帮助,将不胜感激!

相关内容