调整照片微距以改变格式

调整照片微距以改变格式

使用以下 LaTeX 简历模板此链接(登录:[电子邮件保护]; pw: 123456),我发现图片会自动剪切为垂直格式。我只想让我的图片按原样显示,即水平显示。据我所知,模板使用这些命令来插入图片:

\newcommand{\photo}[2]{\def\@photo{#2}\def\@photodiameter{#1}}
\photo{2.5cm}{DCE2small2}

为了使用我自己的,我删除了 DCE2small2.jpg 并插入了我的图片,然后将其命名为 DCE2small2.jpg。

我该如何改变它以保持 .jpg 的格式?

答案1

该模板基于yaac-另一份很棒的简历,并将照片放置在由 Ti 定义的形状中Z。

\newcommand\idphoto{
  \tikz\path[fill overzoom image={\@photo}]rectangle (\linewidth,1.2\linewidth);
}

如果使用宽度大于高度的照片,照片就会被遮盖。

% !TEX TS-program = lualatex
\documentclass[alternative]{documentMETADATA}
\name{Jane}{Doe}
\tagline{Electrical Engineer | Instructor}
\photo{4cm}{example-image-16x9}
\socialinfo{
    \email{[email protected]}
}
\begin{document}
\makecvheader
\end{document}

在此处输入图片描述

为了避免这种情况,您可以重新定义\idphoto以简单地使用\includegraphics

% !TEX TS-program = lualatex
\documentclass[alternative]{documentMETADATA}
\name{Jane}{Doe}
\tagline{Electrical Engineer | Instructor}
\photo{4cm}{example-image-16x9}
\socialinfo{
    \email{[email protected]}
}
\makeatletter
\renewcommand\idphoto{%
\includegraphics[width=\@photodiameter,height=\@photodiameter,keepaspectratio]{\@photo}}
\makeatother
\begin{document}
\makecvheader
\end{document}

在此处输入图片描述

相关内容