【Latex】latex如何绘图?

latex

1 绘图

双栏就是{figure*} 单栏就是{figure} 带*还是不带*的区别

双栏三图

latex 复制代码
\usepackage{graphicx} 
\usepackage{subcaption}
\usepackage[font=small]{caption}
% 导入上面的包
% 将图注显示为 "fig."
\captionsetup[figure]{name={Fig.},labelsep=period}

\begin{figure*}[htbp]
	\centering
	\begin{subfigure}[b]{0.33\textwidth}
	  \centering
	  \includegraphics[width=\textwidth]{figures1}
	  \caption{Subfigure 1 Name}
	  \label{fig:subfigure1}
	\end{subfigure}%
	\begin{subfigure}[b]{0.33\textwidth}
		\centering
		\includegraphics[width=\textwidth]{figures2}
		\caption{Subfigure 2 Name}
		\label{fig:subfigure2}
	\end{subfigure}%
	\begin{subfigure}[b]{0.33\textwidth}
		\centering
		\includegraphics[width=\textwidth]{figures3}
		\caption{Subfigure 3 Name}
		\label{fig:subfigure3}
	\end{subfigure}%
	\caption{picture name}
	\label{fig:all_subfigures}
\end{figure*}

单栏两图

latex 复制代码
\begin{figure}[htbp]
	\centering
	\begin{subfigure}[b]{0.25\textwidth}
	  \centering
	  \includegraphics[width=\textwidth]{figures1}
	  \caption{Subfigure 1 Name}
	  \label{fig:subfigure1}
	\end{subfigure}%
	\begin{subfigure}[b]{0.25\textwidth}
		\centering
		\includegraphics[width=\textwidth]{figures2}
		\caption{Subfigure 2 Name}
		\label{fig:subfigure2}
	\end{subfigure}%
	\caption{picture name}
	\label{fig:enter-label}
\end{figure}

单栏单图

latex 复制代码
\begin{figure}[htbp]
	\centering
	\includegraphics[width=\textwidth]{figures}
	\caption{picture name}
	\label{fig:enter-label}
\end{figure}

[htbp]的意思

para explain
h 当前位置
t 页面顶部
b 页面底部
p 浮动
相关推荐
鸡鸭扣4 天前
LaTeX之四:如何兼容中文(上手中文简历和中文论文)、在win/mac上安装新字体。
论文·latex·简历
诸神缄默不语8 天前
LaTeX中的\pdfoutput命令:输出PDF
pdf·latex·\pdfoutput·pdflatex
hu_shidong1 个月前
LaTeX参考文献工具和宏包bibmap项目简介
latex·参考文献·bibmap·宏包·后端程序
阿史大杯茶1 个月前
用LaTeX写一篇帅帅的算法学习题解
学习·算法·latex
ejinxian2 个月前
LaTeX 编辑器-TeXstudio
编辑器·latex·texstudio·texmaker
He BianGu2 个月前
演示:基于WPF的DrawingVisual开发的Chart图表和表格绘制
wpf·绘图·2d·图表·chart·
RS_数模加油站2 个月前
【研赛论文】数学建模2024华为杯论文word/latex模板
数学建模·word·latex·华为杯
present12272 个月前
Matlab中BaseZoom()函数实现曲线和图片的局部放大
开发语言·matlab·信息可视化·数据分析·绘图
孙悟空间2 个月前
国产 LateX 线上平台 LoongTeX 推荐
latex·loongtex
Trouvaille ~2 个月前
【Python篇】matplotlib超详细教程-由入门到精通(上篇)
开发语言·python·数据分析·matplotlib·数据可视化·绘图·python3.11