caption パッケージを使っておき、\caption* を使うと、図の番号を表示しないようにできる。
例
\usepackage{caption} \begin{document} \begin{figure}[h!] \centering \includegraphics[scale=0.7]{waterfall.png} \caption*{Waterfall} \label{fig:waterfall} \end{figure} \end{document}
雑記
投稿日:
caption パッケージを使っておき、\caption* を使うと、図の番号を表示しないようにできる。
\usepackage{caption} \begin{document} \begin{figure}[h!] \centering \includegraphics[scale=0.7]{waterfall.png} \caption*{Waterfall} \label{fig:waterfall} \end{figure} \end{document}
執筆者:seyanen
関連記事
例で、urlcolor=red と書けば、「link to google」の文字列は赤色(red)になる。 もし urlcolor=blue と書けば、リンクは青色になる。 例 \usepackage …
matplotlib で x, y軸・タイトルのフォントサイズを調整する
ラベルの fontsize で指定する。 例 import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, 2, 100) …
python3 で辞書(dict) の for ループでキーと値を取得する
キーと値を取得するには次のようにする。キーは dict のループ、値は dict の values() のループで取得できる。 例 mydictionary = {‘color’: ‘白’, ‘ani …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。