圖片寬度問題

圖片寬度問題

我需要在兩欄紙上製作一欄寬度的圖片,我寫了\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}

相關內容