包括图形在 amsart 中未对齐

包括图形在 amsart 中未对齐

我正在尝试将图片放入 AMS 格式的 Latex 文档中的藻类中:

\documentclass[10pt,reqno]{amsart}

我的照片应该位于此处:

\documentclass[10pt,reqno]{amsart}
\usepackage{pstricks,pst-node,pst-plot,pst-grad}
\usepackage{amssymb,amsfonts,amsmath}
\usepackage{pst-coil}
\usepackage[dvips]{graphicx}
%\usepackage{dsfont}
%\usepackage{graphicx}
%\usepackage{pictex}
%\usepackage{mathrsfs}
\usepackage[colorlinks]{hyperref}
\usepackage{amsmath}
\usepackage{amssymb}
%\usepackage{amsthm}
%\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{booktabs}
\usepackage{tikz-cd}
\usepackage[T1]{fontenc}
\usepackage{color}   %May be necessary if you want to color links

\newtheorem{theorem}{{\bf Theorem}}[section]
\newtheorem*{maintheorem}{{\bf Main Theorem}}
\newtheorem{proposition}[theorem]{{\bf Proposition}}
\newtheorem*{proposition*}{{\bf Proposition}}
\newtheorem{definition}[theorem]{{\bf Definition}}
\newtheorem{lemma}[theorem]{{\bf Lemma}}
\newtheorem{lemma*}{{\bf Lemma}}
\newtheorem{notation}[theorem]{{\bf Notation}}
\newtheorem{convention}[theorem]{{\bf Convention}}
\newtheorem{terminology}[theorem]{{\bf Terminology}}
\newtheorem{example}[theorem]{{\bf Example}}
\newtheorem{corollary}[theorem]{{\bf Corollary}}
\newtheorem{remark}[theorem]{{\bf Remark}}



%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
    % #############################################
    %
    %           Title, Authors, etc
    %
    % #############################################
    
    \title[ titles]%
    { Homology Structures }
    %\subjclass{%
        %   Primary 52C15; Secondary 30F99, 57M50}

    
    
    \author[X]{X} %

    
    
    \date{March 03, 2024}
    
    %\thanks{}
    
    
    
    \begin{abstract}
        We study 
    \end{abstract}
    
    \maketitle
    \vskip 48pt
    \section{Introduction}
    \begin{definition}
        This is a definition.
    \end{definition}
    
    

    
    
    
    %   <Canonical Examples>
    \begin{figure}
        \begin{center}
            \fbox{\includegraphics[width=0.05\textwidth]{IMG_2.jpg}}
            \caption{Caption here}
            %       \label{fig:figure_label}
        \end{center}
    \end{figure}
        
    
    
\end{document}

但是无论我怎么尝试,比例尺仍然太大并且偏离中心。我反复调整比例尺、宽度等,但无济于事。堆栈上的许多修复似乎都无法解决我的问题。我甚至缩小了文件大小,但似乎不起作用。有办法解决这个问题吗?

作为参考,我的预览器如下所示: 在此处输入图片描述

编辑:添加了 fbox。图像在文档类文章中也照常运行。只有当它运行到此文档类中时才会导致这些问题。

答案1

\documentclass{article}
\usepackage[dvips]{graphicx}
\begin{document}
\fbox{\includegraphics{example-image.jpg}}
\end{document}

您明确指定了dvips图像处理

\usepackage[dvips]{graphicx}

通常建议不要指定此项,而让系统选择最佳选项,但是在这种情况下,您的其他设置会使 latex+dvips 成为唯一选项,例如:

您有 pstricks:

\usepackage{pstricks,pst-node,pst-plot,pst-grad}

因此不能使用 pdflatex,并且有 8 位字体设置:

\usepackage[T1]{fontenc}

所以不能使用 lualatex 或 xelatex。

LaTex/dvips 不能包含 jpg 文件,所以你应该会遇到错误

! LaTeX Error: Cannot determine size of graphic in example-image.jpg (no Boundi
ngBox).

如果你提供一个边界框,例如在.bb文件中或

\includegraphics[bb=0 0 100 100]{example-image.jpg}

那么 latex 不会出错,但 jpg 文件将内联到生成的 PostScript 中,就好像它是一个 EPS 文件一样,并在 PostScript 渲染器中产生错误。

因此输出根本不应该显示图像。

相关内容