我想用彩色框突出显示文本中的 URL 超链接以及表格、图表和参考文献的超链接,如下例所示:
由于我对乳胶还很陌生,有人可以帮帮我吗?
先感谢您!
答案1
这是一个例子
\documentclass[a4paper]{article}
\usepackage{hyperref}
\parindent=0pt
\begin{document}
\section{Example with \textit{hyperref}}
and the associated clinical information were downloaded \\
(GEO,\href{http://www.ncbi.nlm.nih.gov/geo/}{http://www.ncbi.nlm.nih.gov/geo/})\\
selected data are shown in Table \ref{tab1} . Information \\
and associated host genes was retrieved from miRBase
\begin{table}[h]
\begin{tabular}{c|c}
\hline
one & 1 \\
\hline
two & 2 \\
\hline
\end{tabular}
\label{tab1}
\end{table}
\end{document}
结果