如何将分布式对齐应用到图形的上下文中?
我尝试过应用\justifying
,或者caption
打包并\captionsetup
运行。
然而,它们破坏了期刊标题模板。
\begin{figure*}[pt]
\centering
\includegraphics[width=17.5cm, clip, keepaspectratio]{Latex_format_IEEE_access/figures/figure_system_arhchitecture.pdf}
\caption{xxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxx}
\label{fig:system_architecture}
\end{figure*}
答案1
- 这是一个相当老的问题,缺乏所需的信息
documentclass
, - 您在格式化字幕文本时遇到了问题,因为您在其中添加了一些非自然文本,这些文本很难格式化,
- 不清楚你的意思是什么
distributed alignment to the context on Figure
,
我猜你可能使用了ieeeaccess
documentclass。如果我是对的,那么更改默认标题设置不是一个好主意,最终模仿 的标题figure*
,而ieeeaccess
本身不支持。例如:
\documentclass{ieeeaccess}
\usepackage{graphicx}
\usepackage[font={sf,scriptsize},
labelfont={bf,color=accessblue}]
{caption}
\usepackage{lipsum}
\begin{document}
\Figure[ht]{example-image-duck}
{Test figure \label{fig:test}}
\begin{figure*}[pt]
\centering
\includegraphics[width=\linewidth]{example-image-duck}
\caption{\lipsum[66]}
\label{fig:system_architecture}
\end{figure*}
\lipsum\lipsum
\EOD
\end{document}
答案2
你想要那样的东西吗?(紧接着\begin{figure}
)
\captionsetup{justification=raggedright}% raggedright, raggedleft, centering
它需要这个caption
包。