如何删除乳胶中的超链接符号?
How to remove hyperlink symbol in latex?
我正在尝试使用现代 Deedy 模板在背面制作一份新简历 - here
目前是这样的
在第一个项目 - 配对交易的桌面应用程序下,我没有 link 来提供代码,所以我只想删除导致另一个 link 的小符号.
在代码中,这部分的段是这样的
\projectHeadingwithoutLink{DESKTOP APPLICATION FOR PAIR TRADING}{https://github.com/devangmukherjee/random-zomato-restaurant}{Python, Selenium, Tkinter, Yahoo Finance API}
Made a desktop application for finding correlation between two stocks and looking for divergence using density curve formula which sold multiple copies at 500 USD each.\
\sectionsep
\projectHeading{LOCATION BASED RESTAURANT SUGGESTION}{https://github.com/devangmukherjee/random-zomato-restaurant}{NodeJS, ExpressJS, Mongoose, MongoDB}
A full-stack website which can suggest the best restaurants in an area using Zomato API and filtered according to user ratings.\
\sectionsep
projectHeading
的部分看起来像这样
% Create project heading. Parameters: Name, link, Tech stack
\newcommand{\projectHeading}[3]{\Project{#1}{#2}
\descript{#3}\}
如何编辑它以删除 hyperlink 符号,同时保留右侧的语言名称?
修改resume-openfont.cls
文件。
在 resume-openfont.cls
的第 125 行注释命令 \faExternalLink
,它插入这样的符号和 link。 \Project
命令是插入 hyperlink.
的命令
% Project command
\newcommand{\Project}[2]{
\runsubsection{%
\href{#2}{\uppercase{#1}} %\,\faExternalLink}
}
\hfill
}
我正在尝试使用现代 Deedy 模板在背面制作一份新简历 - here
目前是这样的
在第一个项目 - 配对交易的桌面应用程序下,我没有 link 来提供代码,所以我只想删除导致另一个 link 的小符号.
在代码中,这部分的段是这样的
\projectHeadingwithoutLink{DESKTOP APPLICATION FOR PAIR TRADING}{https://github.com/devangmukherjee/random-zomato-restaurant}{Python, Selenium, Tkinter, Yahoo Finance API}
Made a desktop application for finding correlation between two stocks and looking for divergence using density curve formula which sold multiple copies at 500 USD each.\
\sectionsep
\projectHeading{LOCATION BASED RESTAURANT SUGGESTION}{https://github.com/devangmukherjee/random-zomato-restaurant}{NodeJS, ExpressJS, Mongoose, MongoDB}
A full-stack website which can suggest the best restaurants in an area using Zomato API and filtered according to user ratings.\
\sectionsep
projectHeading
的部分看起来像这样
% Create project heading. Parameters: Name, link, Tech stack
\newcommand{\projectHeading}[3]{\Project{#1}{#2}
\descript{#3}\}
如何编辑它以删除 hyperlink 符号,同时保留右侧的语言名称?
修改resume-openfont.cls
文件。
在 resume-openfont.cls
的第 125 行注释命令 \faExternalLink
,它插入这样的符号和 link。 \Project
命令是插入 hyperlink.
% Project command
\newcommand{\Project}[2]{
\runsubsection{%
\href{#2}{\uppercase{#1}} %\,\faExternalLink}
}
\hfill
}