如何用LaTex+dvips+ps2pdf快速构建插入图片?

如何用LaTex+dvips+ps2pdf快速构建插入图片?

我正在使用“LaTex + dvips + ps2pdf + 查看 PDF”的快速构建。

插入(多)图片最简单的方法是什么?

我对 LaTeX 相当熟悉,但我以前从未这样做过。因此,如果有人能给我一份分步指南(包括我需要添加到序言中的任何包或将我的图像文件夹放在哪里),我将不胜感激。

编辑:我现在收到错误“未找到文件“intro”,这让我认为我可能将图像保存在了错误的文件夹中?

\documentclass[12pt]{article}
\usepackage[parfill]{parskip}
\usepackage[all]{xy}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{color}
\usepackage{hyperref} 
\usepackage{pst-poker} 
\usepackage{graphicx} %graphics for the cards%

\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{claim}[theorem]{Claim}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{example}[theorem]{Example}
\newtheorem{question}[theorem]{Question}
\newtheorem{proposition}[theorem]{Proposition}

\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{fact}[theorem]{Fact}
\newtheorem{remark}[theorem]{Remark}
\newtheorem{property}[theorem]{Property}


\begin{document}

\includegraphics[height=\baselineskip]{intro}.

\includegraphics[height=3cm]{intro}\includegraphics[width=5cm]{intro}

\includegraphics[height=3cm]{intro} \includegraphics[width=5cm]{intro}

\end{document}

答案1

关键:对于 dvi 编译,需要 .eps 图像(感谢@samcarter)

步骤如下:

  1. 添加\usepackage{graphicx}到序言
  2. 将图像保存在与 .tex 文件相同的文件夹中
  3. 使用在线转换器将图像转换为 .eps这个
  4. \includegraphics{picture_name}在主手术室使用
  5. 使用\includegraphics{folder_name/picture_name}(如果您将图片保存在文件夹中)
  6. 如需更多调整(尺寸、颜色等),请考虑此链接

相关内容