Q4. I wish to add an image to my article With what command can I mention the name of the image file to be added?
1)/addgraphics{}
2)/begingraphics{}
which one is the correct
option
Answers
Answered by
0
Answer:
1 one addgraphics is the answer I think so
Explanation:
mark me as brainliest please.
Answered by
1
Answer:
addgraphics{}
Explanation:
Latex can not manage images by itself, so we need to use the graphicx package. To use it, we include the following line in the preamble: \usepackage{graphicx}.
The command \graphicspath{ {./images/} } tells LATEX that the images are kept in a folder named images under the directory of the main document.
The \includegraphics{universe} command is the one that actually included the image in the document. Here universe is the name of the file containing the image without the extension, then universe.PNG becomes universe. The file name of the image should not contain white spaces nor multiple dots.
Similar questions