背面复制的项目不再显示字体很棒的图标

发布于 2025-01-11 01:17:26 字数 920 浏览 0 评论 0原文

我在背面复制了一个现有项目,但它不显示图标,而是显示代码,例如,主项目是:

在此处输入图像描述

但复制的项目是 LinkedIn 图标:

在此处输入图像描述

这是一个最小的可重现示例:

\documentclass[10pt,letterpaper,roman]{moderncv}
\usepackage{array}
\usepackage{url}
\usepackage{moderncvcompatibility}
\usepackage{tikz}
\usepackage[super]{nth}
\usepackage{ulem}
\usepackage{fontawesome5}
\usepackage{enumitem}
\usepackage{filecontents}
\usepackage[scale=0.89, top=0.3in, bottom=0.35in]{geometry} 

\moderncvstyle{banking} 
\moderncvcolor{blue} 


\firstname{Shirin}
\familyname{JZ}
\email{...}
\mobile{...}
\extrainfo{\link[\faLinkedin \addvspace{1}]{...}}


\begin{document}
\makecvtitle
\end{document}

I copied an existing project on overleaf but it doesn't display the icons, instead shows the code, for example, the main project is:

enter image description here

but the copied project is for LinkedIn icon:

enter image description here

here is a minimal reproducible example:

\documentclass[10pt,letterpaper,roman]{moderncv}
\usepackage{array}
\usepackage{url}
\usepackage{moderncvcompatibility}
\usepackage{tikz}
\usepackage[super]{nth}
\usepackage{ulem}
\usepackage{fontawesome5}
\usepackage{enumitem}
\usepackage{filecontents}
\usepackage[scale=0.89, top=0.3in, bottom=0.35in]{geometry} 

\moderncvstyle{banking} 
\moderncvcolor{blue} 


\firstname{Shirin}
\familyname{JZ}
\email{...}
\mobile{...}
\extrainfo{\link[\faLinkedin \addvspace{1}]{...}}


\begin{document}
\makecvtitle
\end{document}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

违心° 2025-01-18 01:17:26

有两个问题:

  • 您不能在使用 \addvspace{1} 的地方使用它。因此,您会收到一条错误消息。永远不要忽略错误消息...
\documentclass[10pt,letterpaper,roman]{moderncv}
\usepackage{array}
\usepackage{url}
\usepackage{moderncvcompatibility}
\usepackage{tikz}
\usepackage[super]{nth}
\usepackage{ulem}
\usepackage{fontawesome5}
\usepackage{enumitem}
\usepackage{filecontents}
\usepackage[scale=0.89, top=0.3in, bottom=0.35in]{geometry} 

\moderncvstyle{banking} 
\moderncvcolor{blue} 


\firstname{Shirin}
\familyname{JZ}
\email{...}
\mobile{...}
\extrainfo{
\link[
\faLinkedin %\addvspace{1}
]{...}}


\begin{document}
\makecvtitle
\end{document}

  • 缺少图标的问题似乎特定于背面所使用的 TL2021 版本。它与更新的 TL2021(以及 TL2022 预测试)版本配合良好。为避免出现此问题,您可以从背面侧栏中选择 TL2020:

在此处输入图像描述

https://www.overleaf.com/read/gdqshmnxcnvp

Two problems:

  • you can't use \addvspace{1} where you are using it. You'll get an error message because of this. Never ignore error messages...
\documentclass[10pt,letterpaper,roman]{moderncv}
\usepackage{array}
\usepackage{url}
\usepackage{moderncvcompatibility}
\usepackage{tikz}
\usepackage[super]{nth}
\usepackage{ulem}
\usepackage{fontawesome5}
\usepackage{enumitem}
\usepackage{filecontents}
\usepackage[scale=0.89, top=0.3in, bottom=0.35in]{geometry} 

\moderncvstyle{banking} 
\moderncvcolor{blue} 


\firstname{Shirin}
\familyname{JZ}
\email{...}
\mobile{...}
\extrainfo{
\link[
\faLinkedin %\addvspace{1}
]{...}}


\begin{document}
\makecvtitle
\end{document}

  • the problem with the missing icon seems to be specific to the TL2021 version overleaf is using. It works fine with an updated TL2021 (as well as the TL2022 pretest) version. To avoid the problem, you can select TL2020 from the overleaf side bar:

enter image description here

https://www.overleaf.com/read/gdqshmnxcnvp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文