0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Latexで画像が表示されない場合

Posted at

課題

overleaf(Latex)で論文を作成していたところ,画像(png)が表示されないという問題が発生しました.
具体的にはコンパイルエラーが起きているわけではないものの,本来画像が表示される部分が真っ白になっていて何も表示されていない状態でした.
使用したパッケージを含む実際のコードは下記の通りです.

コード

\documentclass[12pt]{jsarticle}
\usepackage{lipsum}
\usepackage[dvipdfmx]{graphicx}
\usepackage[dvipdfmx]{color}
\usepackage{cite}
\usepackage{url}
\usepackage{plext}

\usepackage{textgreek}
\usepackage[utf8]{inputenc}

\usepackage{hyperref}
\definecolor{linkcolor}{rgb}{0.0,0.3,0.5}
\usepackage{tensind}

\usepackage{verbatim}
\usepackage[normalem]{ulem}
\usepackage{soul}
\usepackage{orcidlink}


\begin{document}
\includegraphics[width=50mm]{figs/hoge.png}
\end{document}

解決方法

\usepackage{orcidlink}を削除したところ,画像が表示されました.
graphicxやcolorに[dvipdfmx]を追加しても表示されない方は,導入しているパッケージのいずれかが干渉してしまっている可能性があるので,一つ一つ削除して干渉しているパッケージを探してみましょう(自戒の意も込めて).

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?