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생산하는 모드 에서

여기에 이미지 설명을 입력하세요

관련 정보