如何以想象为中心而不是以标题和引用为中心?

如何以想象为中心而不是以标题和引用为中心?

对于我的论文,我需要添加我使用的图像的来源。为了实现这一点,我的格式如下

\begin{center}
   \includegraphics[scale=0.4]{Images/ci-cd-flow-desktop_edited_0.png}
\end{center}
\fontsize{9}{11}\selectfont Abbildung 2: CI/CD \\ Quelle: Sourceurl

问题是我无法为我的图片生成目录,所以我尝试

\begin{figure}[h]
\centering
\includegraphics[scale=0.2]{Images/DevOps infinity wheel_SIMPLE.png}
\caption {DevOps Schleife}
\url{Quelle: https://medium.com/taptuit/the-eight-phases-of-a-devops-pipeline-fda53ec9bba}
\label{fig:my_label}
\end{figure}

我需要更改标题和网址的字体大小,还需要将它们放在左边而不是居中。我尝试了在线找到的几个解决方案,但都没有什么帮助。有人知道我怎样才能让它们放在左边而不是居中吗?

答案1

这个caption包很有用。例如,试试这个:

\documentclass{article}
\usepackage{caption,graphicx,url,lipsum}

\captionsetup{singlelinecheck=false,font=small}
\def\UrlFont{\ttfamily\small}

\begin{document}

\begin{figure}[ht]
\centering
\includegraphics[width=3cm]{example-image}
\caption{DevOps Schleife\\
         Quelle: \protect\url{https://medium.com/taptuit}}
\label{fig:my_label}
\end{figure}
\lipsum[1]

\end{document}

在此处输入图片描述

相关内容