I want to horizontally center an image in my paper by the code below.
\documentclass[12pt,twocolumn,oneside,a4paper]{article}
...
...
...
\begin{figure*}[]
HK1706 (in 2017)
\centering
\includegraphics[width = 1.15\textwidth]{materials/aaa.jpg}
\caption{Map of the study area showing sampling stations and station numbers. }
\label{Figure 3}
\end{figure*}
But the image in pdf exported is off to the right like the attached image. It seems to be left-justified. How can I fix this and center the image?


\textwidthis the width of the paper margin (the part to print the text, if I use a wrong word), so1.15\textwidthis wider than the margin, or, your picture requires more space than expected. Therefore it can't be centered by\centering. I recommend usingx\textwidthfor0 < x <= 1. Otherwise, you must need some more strategy. – Dec 26 '18 at 13:29\begin{document},\end{document}and all necessary packages (justgraphicxin this case) so that we don't have to add these ourselves when we want to run/modify your code. – Circumscribe Dec 26 '18 at 13:46\linewidth, with\makebox[\linewidth]{\includegraphics[…]{…}}btw. (See e.g. here.) – Circumscribe Dec 26 '18 at 13:49\includegraphics[width = 1.15\textwidth]{materials/aaa.jpg}with\includegraphics[width = 1.0\textwidth]{materials/aaa.jpg}? Put differently, what are you trying to achieve by making the image wider than the textblock? – Mico Dec 26 '18 at 14:08\includegraphics[width = 1.15\textwidth,center]{materials/aaa.jpg}. Please see Center figure that is wider than \textwidth. – Martin Scharrer Dec 26 '18 at 18:05