調整圖形寬度時保持圖形質量

調整圖形寬度時保持圖形質量

我使用 MS Paint 創建了一個 PNG 映像以在我的文件中使用(我知道的老派)。我想將圖形保持在頁面寬度內而不損失圖像品質。我嘗試過使用 JPG 影像,但品質仍然很差(在 100% 縮放的 PDF 模式下查看時,文字太小而看不清)。

有人可以建議解決方案嗎?我包括我的代碼和 2 個螢幕截圖。

先致謝!

    \documentclass[a4paper,11pt]{article}
\usepackage{color}
\usepackage{graphicx, epstopdf}
\usepackage{gensymb}
\usepackage{times}
\usepackage{adjustbox}
\usepackage{tabulary}
\usepackage{tabularx}
\usepackage{booktabs,caption, makecell}
\usepackage{pdflscape,afterpage,caption}
\usepackage[british]{babel}
\usepackage[backend=bibtex, citestyle=ieee, bibstyle=ieee]{biblatex}
\usepackage[section]{placeins}%Allows you to permanently fix figures. 

\begin{document}

\begin{figure}[h!]
\centering
\includegraphics[width=1.5\textwidth]{IMAGE_Raman_principles}
\caption{Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas porttitor congue massa. Fusce posuere, magna sed pulvinar ultricies, purus lectus malesuada libero, sit amet commodo magna eros quis urna.
Nunc viverra imperdiet enim. Fusce est. Vivamus a tellus.
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Proin pharetra nonummy pede. Mauris et orci.
Aenean nec lorem. In porttitor. Donec laoreet nonummy augue.
Suspendisse dui purus, scelerisque at, vulputate vitae, pretium mattis, nunc. Mauris eget neque at sem venenatis eleifend. Ut nonummy.
}
\end{figure}

\end{document}

圖片超出頁面寬度

圖形品質較差,但在頁面寬度之內

答案1

像這樣的繪圖由帶有銳利邊緣的直線組成,實際上應該以向量圖形的形式來完成,以獲得不錯的結果。

下面是在 inkscape 中重新建立第一個圖像並將其匯出到pdf+tex..svg目前可以在 inkscape 中編輯的檔案位於https://www.dropbox.com/s/4usem6v976o7r8h/drawing.svg?dl=0以及由此產生.pdfhttps://www.dropbox.com/s/wsgfuoe018djtln/drawing.pdf?dl=0(我會在幾週內刪除它們)。

 \documentclass{article}
\usepackage{graphicx}
\usepackage{xcolor}

\begin{document}

\begin{figure}
  \setlength{\unitlength}{.7\textwidth}%
  \begin{picture}(1,0.59469542)%
    \put(0,0){\includegraphics[width=\unitlength]{drawing.pdf}}%
    \put(0.30,0.57){Rayleigh scatter}%
    \put(0.30,0.51){Raman scatter}%
    \put(0.00,0.42){Laser excitation}%
    \put(0.49,0.40){Scattered light}%
    \put(0.36,0.04){\textcolor{white}{Sample}}%
  \end{picture}%
    \caption{text}
\end{figure}

\end{document}

在此輸入影像描述


如果您必須使用基於像素的格式,請.png選擇.jpg

此外考慮導出不含文字的圖像並在乳膠中添加文字。這將有幾個優點,例如文字與周圍文字具有相同的大小和字體,並且可以在.pdf

\documentclass{article}
\usepackage{graphicx}

\begin{document}

\begin{figure}
 \setlength{\unitlength}{\textwidth}%
  \begin{picture}(1,0.55070867)%
    \put(0,0){\includegraphics[width=\unitlength]{t4cc9}}%
    \put(0.37,0.51){Rayleigh scatter}%
    \put(0.37,0.46){Raman scatter}%
  \end{picture}%
    \caption{text}
\end{figure}

\end{document}

在此輸入影像描述


相關內容