问题遇到的现象和发生背景
latex编译后插入中文支持宏包时图片不显示(路径正确)
用代码块功能插入代码,请勿粘贴截图
\documentclass[10pt, a4paper, oneside]{artcle}
\usepackage{CJKutf8}
\usepackage{CTEX}
\usepackage{amsmath, amsthm, amssymb, graphicx,subfigure}
\usepackage[bookmarks=true, colorlinks, citecolor=blue, linkcolor=black]{hyperref}
\usepackage{geometry}
\usepackage{wrapfig,float}
\usepackage{enumerate}
\geometry{left=2.5cm, right=2.5cm, top=3cm, bottom=2.5cm}
\linespread{1.5}
\renewcommand\thesection{\arabic{section}}
\title{\vspace{-2.5cm}TEST_}
\author{Nobody}
\date{\today}
\begin{document}
\maketitle
\begin{figure}[H]
\centering
\subfigure[a]{
\includegraphics[width=8.5cm]{双臂电桥/images/四端接法.png} %图片路径需更改
}
\quad
\subfigure[b]{
\includegraphics[width=5.5cm]{双臂电桥/images/四端接法.png} %图片路径需更改
}
\caption{test_fig}
\end{figure}\
\end{document}
%上面为加入中文支持包后
运行结果及报错内容
图片不显示
我的解答思路和尝试过的方法
\documentclass[10pt, a4paper, oneside]{article}
\usepackage{CJKutf8}
% \usepackage{CTEX}
\usepackage{amsmath, amsthm, amssymb, graphicx,subfigure}
\usepackage[bookmarks=true, colorlinks, citecolor=blue, linkcolor=black]{hyperref}
\usepackage{geometry}
\usepackage{wrapfig,float}
\usepackage{enumerate}
\geometry{left=2.5cm, right=2.5cm, top=3cm, bottom=2.5cm}
\linespread{1.5}
\renewcommand\thesection{\arabic{section}}
\title{\vspace{-2.5cm}TEST_}
\author{Nobody}
\date{\today}
\begin{document}
\maketitle
\begin{figure}[H]
\centering
\subfigure[a]{
\includegraphics[width=8.5cm]{双臂电桥/images/四端接法.png}
}
\quad
\subfigure[b]{
\includegraphics[width=5.5cm]{双臂电桥/images/四端接法.png}
}
\caption{test_fig}
\end{figure}\
\end{document}
%注释掉了中文支持的宏包,图片显示正常
有试过将文件类型改为atexart,但是会出现一样的问题
不知道是不是编译环境哪里出了问题,还是说是语法问题
我想要达到的结果
显示中文的同时显示图片