我是个新手,正在使用lyx并学习LaTex。我得给自己写份简历。你可以在下面找到latex代码的lyx LaTex概述,lyx窗口,以及pdf概述。通常情况下,日期应该在部分标题下对齐,但它会生成一个点,而我的文本不会像预期的那样对齐。查看lyx latex概述窗口,我们可以看到它自动跟随{}{}自动跟随我的文本。
您可以单击下面的链接查看概述Cv overview
有什么想法吗?:)谢谢!
% Visionner le code LaTeX
%% LyX 2.3.3 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english]{moderncv}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage{geometry}
\geometry{verbose,tmargin=1cm,bmargin=1cm,lmargin=1cm,rmargin=1cm}
\usepackage{fancyhdr}
\pagestyle{fancy}
\setcounter{secnumdepth}{2}
\setcounter{tocdepth}{2}
\usepackage{float}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage{xmpmulti}
\moderncvtheme[grey]{classic}
\firstname{Charp******}
\familyname{Paul}
\title{CV Académique}
\address{92 rue *******}{Saint Cloud 92210}
\mobile{+33 6 ** ** ** **}
\email{paul.charp_____@imt-atlantique.net}
\photo[120pt]{photoCV.jpg}
\makeatother
\usepackage{babel}
\begin{document}
\maketitle
\section{Formation}
\cventry{}{}{}{}{}{2029--2020}{IMT Atlantique }{Fusion des ex-Mines de Nantes et
de Télécom Bretagne}{}{}
\cventry{}{}{}{}{}{2018--2019}{CPGE MP option info à Hoche }{}{}
\section{Recherche et Bureau d'étude}
\cventry{}{}{}{}{}{test}{}{}
\section{Expériences professionnelles}
\end{document}发布于 2020-04-01 01:47:17
它起作用了!只是改变了括号的排列,我得到的输出和你的相似。
...
...
\section{Formation}
\cventry
{}{2019 -- 2020}
{}{}{IMT Atlantique}{Fusion des ex-Mines de Nantes et de Télécom Bretagne}
\cventry
{}{2018 -- 2019}
{}{}{CPGE MP}{option info à Hoche}
\section{Recherc}
\cventry
{}{2018 -- 2019}
{}{}{CPGE MP}{option info à Hoche}cv-item定义:(cv-entry是cv-item的一部分)
\cvitem[#1]{#2}{%
{\bfseries#3}%
\ifthenelse{\equal{#4}{}}{}{, {\slshape#4}}%
\ifthenelse{\equal{#5}{}}{}{, #5}%
\ifthenelse{\equal{#6}{}}{}{, #6}%
.\strut%
\ifx&%
\else{\newline{}\begin{minipage}[t]{\linewidth}\small#7\end{minipage}}
\fi}}你也可以使用项目符号列表来看起来更好;我的意思是它对我来说很好
\section{Expériences professionnelles}
\cventry
{}{Exp 1}{}{}{}{}
\cvlistitem{lorem ipsum odor sit amet}
\cvlistitem{lorem ipsum odor sit amet}
\cventry
{}{Exp 2}{}{}{}{}
\cvlistitem{lorem ipsum odor sit amet}
\cvlistitem{lorem ipsum odor sit amet}结果如下:

https://stackoverflow.com/questions/60939199
复制相似问题