#latex #latex-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}
Ответ №1:
Ваша табличная заметка пытается заполнить всю строку. Чтобы избежать дополнительного места, вы можете добавить 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 herehfill }
end{tablenotes}
end{figure*}
end{document}