例で、urlcolor=red と書けば、「link to google」の文字列は赤色(red)になる。
もし urlcolor=blue と書けば、リンクは青色になる。
例
\usepackage{hyperref}
\hypersetup{ colorlinks=true, urlcolor=red}
\begin{document}
\href{http://www.google.com}{link to google}
\end{document}
雑記
投稿日:
例で、urlcolor=red と書けば、「link to google」の文字列は赤色(red)になる。
もし urlcolor=blue と書けば、リンクは青色になる。
\usepackage{hyperref}
\hypersetup{ colorlinks=true, urlcolor=red}
\begin{document}
\href{http://www.google.com}{link to google}
\end{document}
執筆者:seyanen
関連記事
python3 で辞書(dict) の for ループでキーと値を取得する
キーと値を取得するには次のようにする。キーは dict のループ、値は dict の values() のループで取得できる。 例 mydictionary = {‘color’: ‘白’, ‘ani …
list をrange を指定して初期化すれば良い。数を1つ飛ばしのリストも次のようにして作れる。 例 list1 = list(range(1,10,2)) print(list1) 結果 [1, …
plt.xlabel と plt.ylabel を使う。 例 import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, …
python3 で、文字列を一文字ずつのリストに変換する方法
string を list() で変換すれば良い。 例 str1 = ‘Good morning.’ list1 = list(str1) print(list1) 結果 [‘G’, ‘o’, ‘o’ …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。