我使用的是 moderncv 风格的休闲风格,我想将引言放在左侧图片旁边,我的名字下面(见下图)。我设法更改了段落下方的大小,但没有更改引言的位置。如果您能提供任何关于如何执行此操作的建议,我将不胜感激,谢谢。
代码如下:
\documentclass[10pt,a4paper,sans]{moderncv}
\usepackage{xpatch}
\makeatletter
\providecommand{\@moderncvstyle}{}
\providecommand{\@moderncvstyleoptions}{}
\xapptocmd{\moderncvstyle}{%
\renewcommand{\@moderncvstyleoptions}{#1}{}{}
\renewcommand{\@moderncvstyle}{#2}{}{}
}
\makeatother
\moderncvstyle{casual}
\definecolor{dark-gray}{gray}{0.20}
\makeatletter
% new commands to enter the birth of date and the family status:
\newcommand*{\dateofbirth}[1]{\def\@dateofbirth{#1}}
\newcommand*{\family}[1]{\def\@family{#1}}
\moderncvcolor{blue}
\usepackage[left=1.9cm, right=1.9cm, top=1.7cm, bottom=1.7cm]
{geometry}
\usepackage{graphicx}
\usepackage{lipsum}
%Personal data
\name{Lydia}{Example}
\address{xx}{xx} \phone{+xx}
\email{xx}
\photo[70pt][0.4pt]{Lydia}
\quote{{\raggedright\color{dark-gray}{***Quote************************.}}}
\begin{document}
\makecvtitle
\section{Experience}
\cventry{xx - xx}{job-title}{name}{city}{country}
{\textit{description}}
\end{document}
我想将引言放在我名字下方的图片旁边。我尝试将其创建为第二个姓名行,但没有成功。
谢谢你的想法。