我写了一份简历,想在里面添加一个二维码。
我的简历模板如下:关联。
我的简历如下:
我喜欢在(添加的 QR)之后立即插入 QR,这样它会稍微移动它下面的线,就像这样:
我不知道如何将图形包含在那里。代码如下:
\cventry
{XXX} % Organization
{Founder and CEO} % Job title
{XXX} % Location
{2021 - To Date} % Date(s)
{
\begin{cvitems} % Description(s) of tasks/responsibilities
\item {Founded ....YYY (added QR)}
\item {Developed ... ZZZ}
\item {Took an ... XXX}
\end{cvitems}
}
cventry 的代码是:
% Define an entry of cv information
% Usage: \cventry{<position>}{<title>}{<location>}{<date>}{<description>}
\newcommand*{\cventry}[5]{%
\vspace{-3.0mm}
\setlength\tabcolsep{0pt}
\setlength{\extrarowheight}{0pt}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{\textwidth - 4.5cm} R{4.5cm}}
\ifempty{#2#3}
{\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
{\entrytitlestyle{#2} & \entrylocationstyle{#3} \\
\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
\multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
\end{tabular*}%
到目前为止,我已经设法做了类似的事情,但现在我只需要使日期一致:
\newlength{\photowidth}
\setlength{\photowidth}{1.5cm}
\newcommand*{\cventryqr}[6]{
\vspace{-2.0mm}
\setlength\tabcolsep{0pt}
\setlength{\extrarowheight}{0pt}
\begin{minipage}[c][][t]{\textwidth -\photowidth - 0.2cm} % <===========
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{\textwidth - 5.2cm} R{5.2cm}}
\ifempty{#2#3}
{\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
{\entrytitlestyle{#2} & \entrylocationstyle{#3} \\
\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
\multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
\end{tabular*}%
\end{minipage}
\hfil
\begin{minipage}[c]{\photowidth}
\includegraphics[width=\photowidth]{#6}
\end{minipage}
}
有任何想法吗?
谢谢
答案1
我找不到 L 和 R(列类型)的定义,所以我使用了 p。我也找不到\ifempty
、\entrypositionstyle
、\entrydatestyle
、\entrytitlestyle
、的定义\entrylocationstyle
。\entrypositionstyle
所以cvitems
我把它们注释掉了。我认为这些都是来自 github 上的 awesome-cv 模板(我不做模板或 github)。
这会使表格*和图像的顶部对齐。 \ht\strutbox
是从基线到文本顶部的距离。
\documentclass{article}
\usepackage{graphicx}
\usepackage{array}
\newlength{\photowidth}
\setlength{\photowidth}{1.5cm}
\newcommand{\cventryqr}[6]{%
\vspace{-2.0mm}
\setlength\tabcolsep{0pt}
\setlength{\extrarowheight}{0pt}
\begin{minipage}[t]{\dimexpr \textwidth -\photowidth - 0.2cm}% modify \textwidth
\begin{tabular*}{\textwidth}[t]%
{@{\extracolsep{\fill}} p{\dimexpr \textwidth - 5.2cm} p{5.2cm}}
%\ifempty{#2#3}% coonot find
%{\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
%{\entrytitlestyle{#2} & \entrylocationstyle{#3} \\
%\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
#2 & #3 \\ #1 & #4\\
%\multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
\multicolumn{2}{p{\textwidth}}{#5}
\end{tabular*}%
\end{minipage}\hfil
\raisebox{\dimexpr \arraystretch\ht\strutbox-\height}{\includegraphics[width=\photowidth]{#6}}%
}
\begin{document}
\cventryqr
{XXX} % Organization
{Founder and CEO} % Job title
{XXX} % Location
{2021 - To Date} % Date(s)
{
\begin{itemize} % Description(s) of tasks/responsibilities
\item {Founded ....YYY (added QR)}
\item {Developed ... ZZZ}
\item {Took an ... XXX}
\end{itemize}
}
{example-image}
\end{document}