PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : grafik einbinden wie



hal-9000
29-06-2003, 16:00
hi,
bin neu in sachen latex und bekomme einfach keine graphiken ins dokument!
was ist denn an diesem beispiel falsch?

\documentclass[12pt]{article}
\usepackage{graphics}
\begin{document}
\begin{picture}
\includegraphics{hallo.png}
\end{picture}
\end{document}

wenn ich nun pdflatex aufrufe, erhalte ich folgendes!

bash-2.05b$ pdflatex 123.tex
This is pdfTeX, Version 3.14159-1.10b (Web2C 7.4.5)
(./123.tex{/usr/share/texmf/pdftex/config/pdftex.cfg}
LaTeX2e <2001/06/01>
Babel <v3.7h> and hyphenation patterns for american, french, german, ngerman, n
ohyphenation, loaded.
(/usr/share/texmf/tex/latex/base/article.cls
Document Class: article 2001/04/21 v1.4e Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size12.clo))
(/usr/share/texmf/tex/latex/graphics/graphics.sty
(/usr/share/texmf/tex/latex/graphics/trig.sty)
(/usr/share/texmf/tex/latex/config/graphics.cfg)
(/usr/share/texmf/tex/latex/graphics/pdftex.def)) (./123.aux)
(/usr/share/texmf/tex/context/base/supp-pdf.tex
(/usr/share/texmf/tex/context/base/supp-mis.tex
loading : Context Support Macros / Missing
)
loading : Context Support Macros / PDF
)
! Use of \pictur@ doesn't match its definition.
<argument> \includegraphics

l.5 \includegraphics
{hallo}
?



danke thorsten

lolli
29-06-2003, 22:36
Hi,
da haste glück, da ich vor einigen tagen das gleiche Problem hatte. Das Package grafics kennt nur .(e)ps-Grafiken. Wenn du png/jpeg einbinden willst, nimm das Package graphicx:

\documentclass[12pt]{article}
\usepackage{graphicx}
\begin{document}
\begin{picture}
\includegraphics{hallo.png}
\end{picture}
\end{document}

Oliver

hal-9000
30-06-2003, 00:32
hi, wenn ich das hier nehme:

\documentclass[12pt]{article}
\usepackage{graphicx}
\begin{document}
\begin{picture}
\includegraphics{hallo.png}
\end{picture}
\end{document}

bekomme ich folgenden fehler!

latex 123.tex
This is TeX, Version 3.14159 (Web2C 7.4.5)
(./123.tex
LaTeX2e <2001/06/01>
Babel <v3.7h> and hyphenation patterns for american, french, german, ngerman, n
ohyphenation, loaded.
(/usr/share/texmf/tex/latex/base/article.cls
Document Class: article 2001/04/21 v1.4e Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size12.clo))
(/usr/share/texmf/tex/latex/graphics/graphicx.sty
(/usr/share/texmf/tex/latex/graphics/keyval.sty)
(/usr/share/texmf/tex/latex/graphics/graphics.sty
(/usr/share/texmf/tex/latex/graphics/trig.sty)
(/usr/share/texmf/tex/latex/config/graphics.cfg)
(/usr/share/texmf/tex/latex/graphics/dvips.def)))
No file 123.aux.
! Use of \pictur@ doesn't match its definition.
<argument> \includegraphics

l.5 \includegraphics
{hallo.png}
?


weiß jemand was falsch is??

- thorsten

lolli
30-06-2003, 08:26
versuchs mal ohne \begin{picture} und \end{picture} ...

red.iceman
30-06-2003, 12:04
Am besten packst du das Bild in eine figure-Umgebung, also z.B.

\begin{figure}\centering
\includegraphics[optionen]{Bild}
\caption{Dies ist ein Bild...}
\end{figure}

nur so kannst du das Bild auch sauber beschriften (\caption).

ri

hal-9000
30-06-2003, 13:33
jetzt hab ich das hier:

\documentclass[12pt]{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}\centering
\includegraphics{hallo.png}
\caption{Dies ist ein Bild...}
\end{figure}
\end{document}

und bekomme das hier als ausgabe:

bash-2.05b$ latex 123.tex
This is TeX, Version 3.14159 (Web2C 7.4.5)
(./123.tex
LaTeX2e <2001/06/01>
Babel <v3.7h> and hyphenation patterns for american, french, german, ngerman, n
ohyphenation, loaded.
(/usr/share/texmf/tex/latex/base/article.cls
Document Class: article 2001/04/21 v1.4e Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size12.clo))
(/usr/share/texmf/tex/latex/graphics/graphicx.sty
(/usr/share/texmf/tex/latex/graphics/keyval.sty)
(/usr/share/texmf/tex/latex/graphics/graphics.sty
(/usr/share/texmf/tex/latex/graphics/trig.sty)
(/usr/share/texmf/tex/latex/config/graphics.cfg)
(/usr/share/texmf/tex/latex/graphics/dvips.def))) (./123.aux)

! LaTeX Error: Cannot determine size of graphic in hallo.png (no BoundingBox).

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...

l.5 \includegraphics{hallo.png}

?


hm...

wo liegt denn da der fehler??

red.iceman
30-06-2003, 15:02
mmh, vielleicht solltest du auch mal die anderen Threads hier im forum lesen....

wenn du eine .dvi datei erzeugen willst, also

latex file.tex

dann mußt du die Bilder im .eps format einbinden.
willst du hingegen .pdf erzeugen, also

pdflatex file.tex

kannst du .png, .jpg und .pdf bilder verwenden.

Der "übliche" weg ist jedoch der erstere.

ri

lolli
01-07-2003, 09:11
> ! LaTeX Error: Cannot determine size of graphic in hallo.png (no BoundingBox)
Gib halt 'ne Größe an:
\includegraphics[width=300,height=600]{hallo.png}

Oliver