我目前正在写一篇研究论文,审稿人要求我增加图片尺寸。目前显示为:
问题在于,IJSEKE 日记模板仅允许将图像设置为与文本相同的宽度。尝试通过缩放来增加图像只会将其移动到右侧,而不会移动到左侧。请参阅此处显示的图像示例:
我也尝试过通过将图像放在\begin{landscape}
图像代码旁边来使图像垂直,输出如下:
但效果仍然不佳。
我尝试将页面方向改为横向,但没有成功。
有没有办法可以去除图片左侧的缩进,以便审阅者可以清楚地看到图片?或者有任何其他与期刊模板相关的解决方案
MWE 是
\documentclass{ws-ijseke}
\usepackage{lipsum}
%\usepackage{lscape}
\begin{document}
\markboth{Author}
{Paper title}
\title{Title}
\section{Adding Image}
\lipsum[1-3]
%\begin{landscape}
\begin{figure*}[htb]%
\centering
\includegraphics[width=\textwidth]{figures/test.png}
\caption{The caption}\label{fig2}
\end{figure*}
%\end{landscape}
\lipsum[1-3]
\end{document}