我正在 overleaf 上处理一个大型协作文档,其中所有图像看起来都很好。当我克隆本地副本进行处理时,所有 pdf 图都旋转了 90°,而所有 .png 图都是正确的方向。有些 pdf 是故意横向放置的,所以我使用\usepackage{rotating}
。使用 TexpadTex 排版机。
我通常使用图像的示例:
\begin{figure}
\center
\includegraphics[width=0.9\textwidth]{GammaHadron/13def_Subtracted.pdf}
\caption{$\Delta\phi$ projections in p+Pb collisions after correlated decay photons are scaled by 1-purity and subtracted from our signal shower shape region. The vertical bars represent the statistical uncertainty, and the grey boxes represent the statistical uncertainty.}
\label{Correlated_Subtracted}
\end{figure}
编辑:抱歉回复晚了。我发了一个最小工作示例。这个示例太简单了,也许是我的排版机出了问题?
编辑2:经过一番挖掘,我发现 ROOT 数据分析框架生成的图像是旋转的,而 python/jupyter notebook 生成的图像是正确的方向。
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\center
\includegraphics[width=0.9\textwidth]{GammaHadron/13def_Eta_Inclusive.png}
\caption{caption}
\label{fig:pPbinclusivephotonETA}
\end{figure}
\begin{figure}
\center
\includegraphics[width=0.9\textwidth]{GammaHadron/13def_Inclusive_Phi.pdf}
\caption{caption.}
\label{fig:pPbinclusivephotonPhi}
\end{figure}
\end{document}