我正在使用 TexStudio 2.6.6。
在以下最小工作示例中,该pdflatex
命令可以正确加载图像文件。
完整命令pdflatex
是
"C:\Program Files\MiKTeX 2.9\miktex\bin\x64\pdflatex.exe" -src -interaction=nonstopmode %.tex"
但这个latex
命令没有正常工作。
"C:/Program Files/MiKTeX 2.9/miktex/bin/x64/latex.exe" -synctex=1 -interaction=nonstopmode %.tex"
错误信息是:
Cannot determine size of graphic in XiSm11.JPG (no BoundingBox). ...ics[scale=0.8,keepaspectratio]{XiSm11.JPG}
最小的工作示例是:
\documentclass[a4paper,12pt,reqno,twoside]{amsart}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{color}
\usepackage{ifpdf}
\usepackage{array}
\usepackage{url}
\usepackage{graphicx}
\usepackage{float}
\usepackage{multirow,bigdelim}
\addtolength{\textheight}{2cm}
\addtolength{\topmargin}{-1.5cm}
\addtolength{\textwidth}{2cm}
\addtolength{\oddsidemargin}{-1cm}
\addtolength{\evensidemargin}{-1cm}
\numberwithin{equation}{section}
\newtheorem{definition}{Definition}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{proposition}{Proposition}
\newtheorem{corollary}{Corollary}
\newtheorem{remark}{Remark}
\newtheorem{conjecture}{Conjecture}
\usepackage{hyperref}% http://ctan.org/pkg/hyperref
\usepackage{cleveref}% http://ctan.org/pkg/cleveref
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\crefname{lemma}{Lemma}{Lemmas}
\newcommand*{\C}{\mathbb{C}}%.............................C
\newcommand*{\R}{\mathbb{R}}%.............................R
\newcommand*{\Q}{\mathbb{Q}}%.............................Q
\newcommand*{\Z}{\mathbb{Z}}%.............................Z
\newcommand*{\N}{\mathbb{N}}%.............................N
%\newcommand*{\F}{\mathbb{F}_q}%...................finite field of q elements
\newcommand{\comment}[1]{}
%................................
%\def\baselinestretch{2}%.espacement des lignes
%................................
\title[short]
{long}
\author[initial]{full name}
%
\date{Version of \today}
%................................
\subjclass[2010]{11M20, 11M26, 43A50}
\keywords{keyword1,keyword2}
%
\AtBeginDocument{%
%\mathtoolsset{showonlyrefs,mathic = true}
\begin{abstract}
abstract
\end{abstract}
\maketitle
%\tableofcontents % Table of Contents
}
%..........................................
\begin{document}
\footnotetext{[email protected]}
%
\section{Introduction}
hello
%
%figure 7 XiSm11
\begin{figure}[H]
\centering
\includegraphics[scale=0.8,keepaspectratio]{XiSm11.JPG}
\caption{caption}
\end{figure}
\end{document}
我想学习一种使用latex
命令加载图像的方法。
答案1
使用 进行编译时可以包含的唯一格式latex
是eps
,因此如果您希望使用latex
而不是进行编译pdflatex
,则需要将图形转换为eps
格式。pdflatex
另一方面, 允许您使用pdf
、png
、jpg
和eps
(通过epstopdf
)。