latex题注(caption)位置
centering我们以插⼊图⽚为例来说明latex中将题注(caption)置于不同位置的⽅法。
⼀般⽽⾔图⽚的题注会加在图⽚下⽅。如果想要使题注位于图⽚上⽅,只需要 \caption{caption-content} 置于命令 \includegraphics[options] {picture-file} 之前即可。下⾯是⼀个例⼦。
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h!]
\caption{A picture of a gull.}
\centering
\includegraphics[width=0.5\textwidth]{atom_in_cavity.jpg}
\end{figure}
\begin{figure}[h!]
\centering
\reflectbox{%
\includegraphics[width=0.5\textwidth]{atom_in_cavity.jpg}}
\caption{A picture of the same gull
looking the other way!}
\end{figure}
\end{document}
有的时候我们还可能希望题注出现在图⽚的右⾯。这可以通过两种⽅法实现。第⼀,在figure环境中嵌套⼩页(minipage)环境来实现。第⼆,使⽤sidecap宏包中的SCfigure环境。下⾯例⼦中我们分别使⽤了这两种⽅法实现了题注的侧置。
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\usepackage{sidecap}
\begin{document}
\begin{figure}
\begin{minipage}{0.5\textwidth}
\includegraphics[width=\textwidth]{atoms_in_cavity.jpg}
\end{minipage}%
\begin{minipage}{0.5\textwidth}
\caption{A picture of a gull.}
\end{minipage}
\end{figure}
\begin{SCfigure}
\centering
\includegraphics[width=0.5\textwidth]{atoms_in_cavity.jpg}
\caption{A picture of a gull}
\end{SCfigure}
\end{document}
——数声风笛离亭晚,我想潇湘君想秦!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论