繁体   English   中英

LaTex - 图形环境中脚注单词之间的额外空格

[英]LaTex - Extra space between words of footnotes in figure environment

下图中脚注的文字之间有多余的空格。 我该如何解决这个问题?

\documentclass[jou]{apa7}

\begin{document}

\begin{figure*}
\centering
 \caption{Title}
 \vspace{0.3cm}
\includegraphics[width=\textwidth]{example.png}
 \vspace{4pt}
     \begin{tablenotes}[para,flushleft]
        {\small \textit{Note.} Figure notes here }
    \end{tablenotes}
    
\end{figure*}
\end{document}

你的表格笔记试图填满整行。 为避免多余的空间,您可以在末尾添加\hfill以填充该行。

\documentclass[jou]{apa7}

\shorttitle{subtitle}

\begin{document}

\begin{figure*}
\centering
 \caption{Title}
 \vspace{0.3cm}
\includegraphics[width=\textwidth]{example-image-duck}
 \vspace{4pt}
     \begin{tablenotes}[para,flushleft]
        {\small \textit{Note.} Figure notes here\hfill }
    \end{tablenotes}
\end{figure*}
\end{document}

在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM