проблема с шириной изображения

проблема с шириной изображения

Мне нужно сделать картинку шириной в одну колонку на двухколоночной бумаге, и я написал, \linewidthно она не работает так, как показано ниже; она меньше ширины и также очень маленькая. Мне нужно сделать ее больше; есть ли помощь?

мое фото

\begin{figure}[H]
\centering
\includegraphics[width=\linewidth]{Data/classoutput.eps}\label{pic10}
\caption{Caption}
\end{figure}

решение1

Ваше изображение имеет много пустого пространства вокруг него. Вы можете обрезать изображение с помощью

\includegraphics[trim=20 20 20 20,clip]{...}

(выберите четыре правильных значения, в моем примере это 20pt со всех сторон).

решение2

С помощью PSTricks.

введите описание изображения здесь

% filename is main.tex
% compile it with pdflatex -shell-escape main.tex

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{dummy.tex}
\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pstricks}
\usepackage{graphicx}
\newsavebox\IBox
\sbox\IBox{\includegraphics{example-image-a}}

\psset
{
    xunit=\dimexpr\wd\IBox/10,
    yunit=\dimexpr\ht\IBox/10,
}

\addtopsstyle{gridstyle}
{
    griddots=0,
    gridcolor=red,
    gridwidth=0.4pt,
    subgriddiv=5,
    subgridcolor=green!50,
    subgridwidth=0.1pt,
    gridlabels=5pt,
}

\begin{document}
\begin{pspicture}[showgrid=top](10,10)
    \rput[bl](0,0){\usebox\IBox}
\end{pspicture}

\begin{pspicture}[showgrid=false](5,5)(10,10)
\psclip{\psframe[dimen=middle,linestyle=none](5,5)(10,10)}
    \rput[bl](0,0){\usebox\IBox}
\endpsclip
\end{pspicture}
\end{document}
\end{filecontents*}

\immediate\write18{latex dummy}
\immediate\write18{dvips dummy}
\immediate\write18{ps2pdf dummy.ps}


\usepackage{graphicx}
\begin{document}
Karl's students do not care about dashing patterns.
\begin{figure}[hbtp]
\centering
\includegraphics[page=2,width=0.8\linewidth]{dummy}
\caption{The cropped image}
\label{fig:TheCroppedImage}
\end{figure}
Karl's students do not care about arrow tips. Karl's students, by the way, do not know what a transformation matrix is.
\end{document}

Связанный контент