EROR's blog

By EROR, 10 years ago, In English

I am trying to create some problems in codeforces polygon system. In one of my problem i need to display some images for better understanding. I uploaded my image in the resource. But to integrate a image in the problem statement. Can any one help me by providing the answer..

Thnx in advance.

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
10 years ago, # |
  Vote: I like it 0 Vote: I do not like it

You should write the following code in problem statement:

\begin{center}
\includegraphics{image.png}
\end{center}

This works when you just want HTML output. But in order to make PDF output work as well, something like this is needed:

\begin{center}
\includegraphics[bb=0 0 100 200]{image.png}
\end{center}
  • »
    »
    10 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    thank you. many many thanks for your help...