無法使用 Fly-Latex 顯示影像

無法使用 Fly-Latex 顯示影像

我已經設定了一個運行完美的 Fly Latex 伺服器。現在,我想在其中添加圖像,每當我使用正確的語法添加圖像名稱時,我總是會得到一個裡面有圖像名稱的方塊。下面是程式碼 -

\documentclass{article}
\usepackage[pdftex]{graphicx}
\usepackage{color}
\graphicspath{ {\home\pranav\} }

    \title{Cartesian closed categories and the price of eggs}
    \author{Jane Doe}
    \date{September 1994}
    \begin{document}
   \maketitle
    \textcolor[Blue]{Hello world!}
   It is so nice to see the world!
    \includegraphics{details.png}

\end{document}

我從 CTAN 編譯了顏色包並將其放入 texlivepackages 目錄中,但這不起作用。有人可以告訴發生了什麼事嗎?

答案1

你的程式碼產生

   { {\home \pranav \} } 
! Paragraph ended before \graphicspath was complete.

因為大括號不匹配(\}}字元不是組結尾)

改變\}}

它產生

! LaTeX Error: Undefined color model `Blue'.

作為

\textcolor[Blue]{Hello world!}

應該

\textcolor{Blue}{Hello world!}

改變[]{} 生產

! LaTeX Error: Undefined color `Blue'.

因為預定義的顏色是blue。修復產生錯誤的問題

! Undefined control sequence.
\reserved@b ->\home 

因為乳膠路徑應該使用巨集/而不是該名稱的資料夾。\home\home

所以改變路徑

\graphicspath{ {/home/pranav/} }

它運行沒有錯誤:

在此輸入影像描述

正如您所看到的,其中包含了 graohic。如果您看到一個帶有檔案名稱的框,那麼您的程式碼可能與您顯示的範例不同,而是:

\documentclass[draft]{article}
\usepackage[pdftex]{graphicx}
\usepackage{color}
\graphicspath{ {/home/pranav} }

    \title{Cartesian closed categories and the price of eggs}
    \author{Jane Doe}
    \date{September 1994}
    \begin{document}
   \maketitle
    \textcolor{blue}{Hello world!}
   It is so nice to see the world!
    \includegraphics{details.png}

\end{document}

draft產生的模式

在此輸入影像描述

相關內容