页面尺寸正确

页面尺寸正确

我需要在乳胶中创建一个图形,然后将其提取为 PNG。

我的乳胶代码:

\documentclass{article}
\usepackage{svg}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage[papersize={1000px,1000px}]{geometry}
\pagestyle{empty} % Remove page numbers

\begin{document}

\begin{figure}
  \centering
  \subfloat[Noisy Plot]{\includesvg[width=0.5\textwidth]{test.svg}\label{fig:noisy}}\hfill
  \subfloat[Good Plot]{\includesvg[width=0.5\textwidth]{test.svg}\label{fig:good}}\\
  \subfloat[Nice Plot]{\includesvg[width=0.5\textwidth]{test.svg}\label{fig:nice}}\hfill
  \subfloat[Signal Plot]{\includesvg[width=0.5\textwidth]{test.svg}\label{fig:signal}}
  \caption{My test plots}
  \label{fig:four-plots}
\end{figure}

\end{document}

结果:

在此处输入图片描述

问题:页面宽度必须准确为 1000 像素。图的宽度应相应调整(同时保持纵横比)。但是当我将 PDF 转换为 PNG 时,PNG 的尺寸为2778 x 2778 像素。如何强制尺寸宽度为 1000 像素?

相关内容