I am writing a bilingual pdf with texlive+vscode/xe->bib->xe->xe, and I wanted to insert two identical images in the parallel columns, which was achieved by the following codes, but unfortunately, their positions alway drift to the right side. I have tried \centering \raggedleft \flushleft but failed. Can anyone show me how to modify the codes?
//recipes
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
],
//tex
% paper layout
\documentclass[a4paper, 12pt]{article}
% margin
\usepackage[margin=2.54cm]{geometry}
% font
\usepackage{fontspec}
% graphicx
\usepackage{graphicx}
% line spacing
\usepackage{setspace}
% parallel text
\usepackage{parallel}
% Times New Roman
\setmainfont{Times New Roman}
\begin{document}
\begin{Parallel}{75mm}{75mm}
\singlespacing
\Large\section{April 2017}
\ParallelLText
{
\includegraphics[width=0.70\columnwidth]{E:/1.jpg}
}
\ParallelRText
{
\includegraphics[width=0.70\columnwidth]{E:/1.jpg}
}
\ParallelPar
\end{Parallel}
\end{document}


\textwidthto\columnwidth. – A.Ellett Jul 18 '20 at 14:16