我想插入一张用 PsTricks(类似于流行的 TikZ)创建的图像(浅灰色)作为背景图像moderncv
。在 PsTricks 图像中,我会在背景中插入一些浅灰色的 LaTeX 公式。
另一种选择是将一些图像放在某些特定位置作为浅灰色背景。
我们怎样才能做到这一点?
\documentclass[10pt,a4paper]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue}
\usepackage[utf8]{inputenc} % replace by the encoding you are using
\usepackage{geometry}
\usepackage{microtype}
\usepackage{blindtext}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\firstname{\Huge{Manuel}}
\familyname{Dopazo Souto}
\title{\Large{Carpinteiro\newline{}\newline{}Wood worker}}
\address{Rúa dabaixo}{36.000, Pontevedra} % optional, remove the line if not wanted
\mobile{649.45.74.35} % optional, remove the line if not wanted % optional, remove the line if not wanted
%MICHI%\fax{fax (optional)} % optional, remove the line if not wanted
\email{[email protected]}
\extrainfo{Data de nacemento: 2 de Xaneiro de 1.492}
\photo[60pt]{example-image-a.jpg}
\nopagenumbers{}
\begin{document}
\newgeometry{top=1.25cm, bottom=1.25cm,right=1.61cm, left=1.61cm}% inner=1cm, outer=0.618\textwidth
\vspace*{-0.56cm}
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\vspace*{-1.24cm}
\vspace*{-0.18cm}
\section{Formación Académica}
\cventry{2015}{Carpinteria de arriba.}{}{}{\newline{}\scriptsize{Up's wood factory.}}{}{}{\scriptsize{Xan.}}
\cventry{2009--2014}{Carpinteria de abaixo}{}{}{\newline{}\scriptsize{Down wood factory. Galicia.}}{}{}{\scriptsize{Xaquin}}
\section{Experiencia}
\cventry{2015}{Carpinteria de arriba.}{}{}{\newline{}\scriptsize{Up's wood factory.}}{}{}{\scriptsize{Xan.}}
\end{document}
答案1
嗯,你没有提供想要使用的图像。所以我使用了包中的一个mwe
名为的图像example-image
。
您可以background
根据需要使用包:
\usepackage[scale=1.5,opacity=0.5,color=black,placement=bottom]{background} % top bottom center
\backgroundsetup{%
contents={\includegraphics[width=\textwidth]{example-image}}
}% backgroundsetup
texdoc background
您将在控制台/终端上找到该文档。
顺便说一句:您的代码中存在一些错误,导致警告和“奇怪”的行为/布局。
请看这两行:
\cventry{2015}{Carpinteria de arriba.}{}{}{\scriptsize{Up's wood factory.}}{\scriptsize{Xan.}}
% 1 2 3 4 5 6
命令\cventry
设计为使用 6 个参数,因此您必须使用 6 对{}
。在您的代码中,您使用了超过 6 个参数,并且行为不当...
在标题中使用\newline
会导致出现一条消息,提示不允许将其添加到 pdf 令牌中(用于 pdf 信息:作者、标题、页面等)
使用完整的 MWE:
\documentclass[10pt,a4paper]{moderncv}
\moderncvstyle{classic}
\moderncvcolor{blue}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\usepackage{microtype}
\usepackage{blindtext}
\usepackage{graphicx}
%\usepackage[export]{adjustbox} % why???????????????????
\usepackage[scale=1.5,opacity=0.5,color=black,placement=bottom]{background} % top bottom center
\backgroundsetup{%
contents={\includegraphics[width=\textwidth]{example-image}}
}% backgroundsetup
\firstname{\Huge{Manuel}}
\familyname{Dopazo Souto}
\title{\Large{Carpinteiro Wood worker}}% deleted \newline{}\newline{}
\address{Rúa dabaixo}{36.000, Pontevedra}
\mobile{649.45.74.35}
\email{[email protected]}
\extrainfo{Data de nacemento: 2 de Xaneiro de 1.492}
\photo[60pt]{example-image-a.jpg}
\nopagenumbers{}
\begin{document}
\newgeometry{top=1.25cm, bottom=1.25cm,right=1.61cm, left=1.61cm}% inner=1cm, outer=0.618\textwidth
\vspace*{-0.56cm}
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\vspace*{-1.24cm}
\vspace*{-0.18cm}
\section{Formación Académica}
\cventry{2015}{Carpinteria de arriba.}{}{}{\scriptsize{Up's wood factory.}}{\scriptsize{Xan.}}
% 1 2 3 4 5 6
\cventry{2009--2014}{Carpinteria de abaixo}{}{}{\newline{}\scriptsize{Down wood factory. Galicia.}}{\scriptsize{Xaquin}}
\section{Experiencia}
\cventry{2015}{Carpinteria de arriba.}{}{}{\newline{}\scriptsize{Up's wood factory.}}{\scriptsize{Xan.}}
\section{Experiencia}
\cventry{2015}{Carpinteria de arriba.}{}{}{\newline{}\scriptsize{Up's wood factory.}}{\scriptsize{Xan.}}
\section{Experiencia}
\cventry{2015}{Carpinteria de arriba.}{}{}{\newline{}\scriptsize{Up's wood factory.}}{\scriptsize{Xan.}}
\end{document}
得到结果:
只需使用该选项即可获得所需的结果。
备注:根据您想要插入的内容,您还可以插入 TeX 代码content
。用您想要展示的数学来尝试一下...