我是 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
,但只会产生如下结果:
任何帮助,将不胜感激!