Compiler shows a square with the name of the eps image rather than the image I need
up vote
0
down vote
favorite
When I use the code, two empty squares ares shown, in each one the name of the figure are displayed, but I need the figures. How could I fix the code, to make appear the images?
documentclass{article}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{epstopdf}
usepackage{multirow}
usepackage{fancyhdr}
usepackage{epsfig}
usepackage{epic}
usepackage{eepic}
usepackage{amsmath}
usepackage{threeparttable}
usepackage{amscd}
usepackage{here}
usepackage{graphicx}
usepackage{lscape}
usepackage{tabularx}
usepackage{subfigure}
usepackage{longtable}
usepackage{comment}
%para graficas
begin{document}
begin{figure}[!tbp]
centering
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrio.eps}
caption{Flower one.}
end{minipage}
hfill
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrioyCiclos_limites.eps}
caption{Flower two.}
end{minipage}
end{figure}
end{document}
floats subfloats epstopdf epslatex
|
show 2 more comments
up vote
0
down vote
favorite
When I use the code, two empty squares ares shown, in each one the name of the figure are displayed, but I need the figures. How could I fix the code, to make appear the images?
documentclass{article}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{epstopdf}
usepackage{multirow}
usepackage{fancyhdr}
usepackage{epsfig}
usepackage{epic}
usepackage{eepic}
usepackage{amsmath}
usepackage{threeparttable}
usepackage{amscd}
usepackage{here}
usepackage{graphicx}
usepackage{lscape}
usepackage{tabularx}
usepackage{subfigure}
usepackage{longtable}
usepackage{comment}
%para graficas
begin{document}
begin{figure}[!tbp]
centering
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrio.eps}
caption{Flower one.}
end{minipage}
hfill
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrioyCiclos_limites.eps}
caption{Flower two.}
end{minipage}
end{figure}
end{document}
floats subfloats epstopdf epslatex
2
Isn'tgraphicxloaded with thedraftoption? Unrelated: you may deleteepsfigloading: it's been obsolete for more than 20 years, and replaced withgraphicx(subfigureis obsolete too and no more maintained).
– Bernard
Jul 9 at 19:28
@Bernard So should I erase the graphics package? I already erase it and the figures are not shown neither.
– JuanMuñoz
Jul 9 at 19:44
1
@JuanMuñoz - No, keep loading thegraphicxpackage. (It's needed for theincludegraphicsinstruction.) By the way, unless your TeX distribution is about 8 years old (or older...), there should be no need to load either theeps2pdfpackage or theepsfigpackage. Finally, do check in your real document if the optiondraftis specified at thedocumentclassstage; if that's the case, do remove thedraftoption.
– Mico
Jul 9 at 20:28
@mico I erase the eps2pdf package and the images where shown, so this fix my problem. Unrelated: but when I erase the epsfig package, appears an error.
– JuanMuñoz
Jul 9 at 20:48
Which TeX distribution do you use?
– Mico
Jul 9 at 20:49
|
show 2 more comments
up vote
0
down vote
favorite
up vote
0
down vote
favorite
When I use the code, two empty squares ares shown, in each one the name of the figure are displayed, but I need the figures. How could I fix the code, to make appear the images?
documentclass{article}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{epstopdf}
usepackage{multirow}
usepackage{fancyhdr}
usepackage{epsfig}
usepackage{epic}
usepackage{eepic}
usepackage{amsmath}
usepackage{threeparttable}
usepackage{amscd}
usepackage{here}
usepackage{graphicx}
usepackage{lscape}
usepackage{tabularx}
usepackage{subfigure}
usepackage{longtable}
usepackage{comment}
%para graficas
begin{document}
begin{figure}[!tbp]
centering
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrio.eps}
caption{Flower one.}
end{minipage}
hfill
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrioyCiclos_limites.eps}
caption{Flower two.}
end{minipage}
end{figure}
end{document}
floats subfloats epstopdf epslatex
When I use the code, two empty squares ares shown, in each one the name of the figure are displayed, but I need the figures. How could I fix the code, to make appear the images?
documentclass{article}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{epstopdf}
usepackage{multirow}
usepackage{fancyhdr}
usepackage{epsfig}
usepackage{epic}
usepackage{eepic}
usepackage{amsmath}
usepackage{threeparttable}
usepackage{amscd}
usepackage{here}
usepackage{graphicx}
usepackage{lscape}
usepackage{tabularx}
usepackage{subfigure}
usepackage{longtable}
usepackage{comment}
%para graficas
begin{document}
begin{figure}[!tbp]
centering
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrio.eps}
caption{Flower one.}
end{minipage}
hfill
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrioyCiclos_limites.eps}
caption{Flower two.}
end{minipage}
end{figure}
end{document}
floats subfloats epstopdf epslatex
floats subfloats epstopdf epslatex
edited Jul 9 at 19:24
Bernard
164k769192
164k769192
asked Jul 9 at 19:15
JuanMuñoz
4921414
4921414
2
Isn'tgraphicxloaded with thedraftoption? Unrelated: you may deleteepsfigloading: it's been obsolete for more than 20 years, and replaced withgraphicx(subfigureis obsolete too and no more maintained).
– Bernard
Jul 9 at 19:28
@Bernard So should I erase the graphics package? I already erase it and the figures are not shown neither.
– JuanMuñoz
Jul 9 at 19:44
1
@JuanMuñoz - No, keep loading thegraphicxpackage. (It's needed for theincludegraphicsinstruction.) By the way, unless your TeX distribution is about 8 years old (or older...), there should be no need to load either theeps2pdfpackage or theepsfigpackage. Finally, do check in your real document if the optiondraftis specified at thedocumentclassstage; if that's the case, do remove thedraftoption.
– Mico
Jul 9 at 20:28
@mico I erase the eps2pdf package and the images where shown, so this fix my problem. Unrelated: but when I erase the epsfig package, appears an error.
– JuanMuñoz
Jul 9 at 20:48
Which TeX distribution do you use?
– Mico
Jul 9 at 20:49
|
show 2 more comments
2
Isn'tgraphicxloaded with thedraftoption? Unrelated: you may deleteepsfigloading: it's been obsolete for more than 20 years, and replaced withgraphicx(subfigureis obsolete too and no more maintained).
– Bernard
Jul 9 at 19:28
@Bernard So should I erase the graphics package? I already erase it and the figures are not shown neither.
– JuanMuñoz
Jul 9 at 19:44
1
@JuanMuñoz - No, keep loading thegraphicxpackage. (It's needed for theincludegraphicsinstruction.) By the way, unless your TeX distribution is about 8 years old (or older...), there should be no need to load either theeps2pdfpackage or theepsfigpackage. Finally, do check in your real document if the optiondraftis specified at thedocumentclassstage; if that's the case, do remove thedraftoption.
– Mico
Jul 9 at 20:28
@mico I erase the eps2pdf package and the images where shown, so this fix my problem. Unrelated: but when I erase the epsfig package, appears an error.
– JuanMuñoz
Jul 9 at 20:48
Which TeX distribution do you use?
– Mico
Jul 9 at 20:49
2
2
Isn't
graphicx loaded with the draft option? Unrelated: you may delete epsfig loading: it's been obsolete for more than 20 years, and replaced with graphicx (subfigure is obsolete too and no more maintained).– Bernard
Jul 9 at 19:28
Isn't
graphicx loaded with the draft option? Unrelated: you may delete epsfig loading: it's been obsolete for more than 20 years, and replaced with graphicx (subfigure is obsolete too and no more maintained).– Bernard
Jul 9 at 19:28
@Bernard So should I erase the graphics package? I already erase it and the figures are not shown neither.
– JuanMuñoz
Jul 9 at 19:44
@Bernard So should I erase the graphics package? I already erase it and the figures are not shown neither.
– JuanMuñoz
Jul 9 at 19:44
1
1
@JuanMuñoz - No, keep loading the
graphicx package. (It's needed for the includegraphics instruction.) By the way, unless your TeX distribution is about 8 years old (or older...), there should be no need to load either the eps2pdfpackage or the epsfig package. Finally, do check in your real document if the option draft is specified at the documentclass stage; if that's the case, do remove the draft option.– Mico
Jul 9 at 20:28
@JuanMuñoz - No, keep loading the
graphicx package. (It's needed for the includegraphics instruction.) By the way, unless your TeX distribution is about 8 years old (or older...), there should be no need to load either the eps2pdfpackage or the epsfig package. Finally, do check in your real document if the option draft is specified at the documentclass stage; if that's the case, do remove the draft option.– Mico
Jul 9 at 20:28
@mico I erase the eps2pdf package and the images where shown, so this fix my problem. Unrelated: but when I erase the epsfig package, appears an error.
– JuanMuñoz
Jul 9 at 20:48
@mico I erase the eps2pdf package and the images where shown, so this fix my problem. Unrelated: but when I erase the epsfig package, appears an error.
– JuanMuñoz
Jul 9 at 20:48
Which TeX distribution do you use?
– Mico
Jul 9 at 20:49
Which TeX distribution do you use?
– Mico
Jul 9 at 20:49
|
show 2 more comments
1 Answer
1
active
oldest
votes
up vote
0
down vote
Use draftfigure package
documentclass{article}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{epstopdf}
usepackage{multirow}
usepackage{fancyhdr}
usepackage{epsfig}
usepackage{epic}
usepackage{eepic}
usepackage{amsmath}
usepackage{threeparttable}
usepackage{amscd}
usepackage{here}
usepackage{graphicx}
usepackage{lscape}
usepackage{tabularx}
usepackage{subfigure}
usepackage{longtable}
usepackage{comment}
usepackage[%
filename ,%
]{draftfigure}
%para graficas
begin{document}
begin{figure}[!tbp]
centering
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrio.eps}
caption{Flower one.}
end{minipage}
hfill
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrioyCiclos_limites.eps}
caption{Flower two.}
end{minipage}
end{figure}
end{document}
1
the question is how to not get the draft display, and show the images.
– David Carlisle
Jul 11 at 12:15
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f439951%2fcompiler-shows-a-square-with-the-name-of-the-eps-image-rather-than-the-image-i-n%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Use draftfigure package
documentclass{article}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{epstopdf}
usepackage{multirow}
usepackage{fancyhdr}
usepackage{epsfig}
usepackage{epic}
usepackage{eepic}
usepackage{amsmath}
usepackage{threeparttable}
usepackage{amscd}
usepackage{here}
usepackage{graphicx}
usepackage{lscape}
usepackage{tabularx}
usepackage{subfigure}
usepackage{longtable}
usepackage{comment}
usepackage[%
filename ,%
]{draftfigure}
%para graficas
begin{document}
begin{figure}[!tbp]
centering
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrio.eps}
caption{Flower one.}
end{minipage}
hfill
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrioyCiclos_limites.eps}
caption{Flower two.}
end{minipage}
end{figure}
end{document}
1
the question is how to not get the draft display, and show the images.
– David Carlisle
Jul 11 at 12:15
add a comment |
up vote
0
down vote
Use draftfigure package
documentclass{article}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{epstopdf}
usepackage{multirow}
usepackage{fancyhdr}
usepackage{epsfig}
usepackage{epic}
usepackage{eepic}
usepackage{amsmath}
usepackage{threeparttable}
usepackage{amscd}
usepackage{here}
usepackage{graphicx}
usepackage{lscape}
usepackage{tabularx}
usepackage{subfigure}
usepackage{longtable}
usepackage{comment}
usepackage[%
filename ,%
]{draftfigure}
%para graficas
begin{document}
begin{figure}[!tbp]
centering
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrio.eps}
caption{Flower one.}
end{minipage}
hfill
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrioyCiclos_limites.eps}
caption{Flower two.}
end{minipage}
end{figure}
end{document}
1
the question is how to not get the draft display, and show the images.
– David Carlisle
Jul 11 at 12:15
add a comment |
up vote
0
down vote
up vote
0
down vote
Use draftfigure package
documentclass{article}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{epstopdf}
usepackage{multirow}
usepackage{fancyhdr}
usepackage{epsfig}
usepackage{epic}
usepackage{eepic}
usepackage{amsmath}
usepackage{threeparttable}
usepackage{amscd}
usepackage{here}
usepackage{graphicx}
usepackage{lscape}
usepackage{tabularx}
usepackage{subfigure}
usepackage{longtable}
usepackage{comment}
usepackage[%
filename ,%
]{draftfigure}
%para graficas
begin{document}
begin{figure}[!tbp]
centering
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrio.eps}
caption{Flower one.}
end{minipage}
hfill
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrioyCiclos_limites.eps}
caption{Flower two.}
end{minipage}
end{figure}
end{document}
Use draftfigure package
documentclass{article}
usepackage[utf8]{inputenc}
usepackage[spanish]{babel}
usepackage{epstopdf}
usepackage{multirow}
usepackage{fancyhdr}
usepackage{epsfig}
usepackage{epic}
usepackage{eepic}
usepackage{amsmath}
usepackage{threeparttable}
usepackage{amscd}
usepackage{here}
usepackage{graphicx}
usepackage{lscape}
usepackage{tabularx}
usepackage{subfigure}
usepackage{longtable}
usepackage{comment}
usepackage[%
filename ,%
]{draftfigure}
%para graficas
begin{document}
begin{figure}[!tbp]
centering
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrio.eps}
caption{Flower one.}
end{minipage}
hfill
begin{minipage}[b]{0.4textwidth}
includegraphics[width=textwidth]{ZTauEquilibrioyCiclos_limites.eps}
caption{Flower two.}
end{minipage}
end{figure}
end{document}
answered Jul 10 at 4:05
Mu30 murugans2katgmail
1,6601213
1,6601213
1
the question is how to not get the draft display, and show the images.
– David Carlisle
Jul 11 at 12:15
add a comment |
1
the question is how to not get the draft display, and show the images.
– David Carlisle
Jul 11 at 12:15
1
1
the question is how to not get the draft display, and show the images.
– David Carlisle
Jul 11 at 12:15
the question is how to not get the draft display, and show the images.
– David Carlisle
Jul 11 at 12:15
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f439951%2fcompiler-shows-a-square-with-the-name-of-the-eps-image-rather-than-the-image-i-n%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Isn't
graphicxloaded with thedraftoption? Unrelated: you may deleteepsfigloading: it's been obsolete for more than 20 years, and replaced withgraphicx(subfigureis obsolete too and no more maintained).– Bernard
Jul 9 at 19:28
@Bernard So should I erase the graphics package? I already erase it and the figures are not shown neither.
– JuanMuñoz
Jul 9 at 19:44
1
@JuanMuñoz - No, keep loading the
graphicxpackage. (It's needed for theincludegraphicsinstruction.) By the way, unless your TeX distribution is about 8 years old (or older...), there should be no need to load either theeps2pdfpackage or theepsfigpackage. Finally, do check in your real document if the optiondraftis specified at thedocumentclassstage; if that's the case, do remove thedraftoption.– Mico
Jul 9 at 20:28
@mico I erase the eps2pdf package and the images where shown, so this fix my problem. Unrelated: but when I erase the epsfig package, appears an error.
– JuanMuñoz
Jul 9 at 20:48
Which TeX distribution do you use?
– Mico
Jul 9 at 20:49