LaTex 图像问题(对齐和定位)

LaTex 图像问题(对齐和定位)

我在 LaTex 中导入图像时遇到了问题。我想将所有图像置于中心,我尝试了这里找到的很多命令,但似乎都不起作用。现在我遇到了另一个问题,因为图像没有放置在文档的正确位置 @_@ 我是 LaTex 新手,所以可能是新手的错误。

以下是代码:

\section{Cliente}

\begin{figure}[ht!]
    \includegraphics[page=1,width=1.5\textwidth,center]{./Query-OrderByRandOttimizzata.png}
\end{figure}

\section{Contratto}

\begin{figure}[ht!]
    \includegraphics[page=1,width=1.5\textwidth,center]{./10Contratti.png}
\end{figure}

\section{Societ\`a}

\begin{figure}[ht!]
    \includegraphics[page=1,width=1\textwidth,center]{./10Societa.png}
\end{figure}

\section{Impianti}

\begin{figure}[ht!]
    \includegraphics[page=1,width=1\textwidth,center]{./10Impianti.png}
    \caption{Nota: in questo caso si \`e costretti a utilizzare la query con ORDER BY per via della condizione sull' ID non rispettata.}
\end{figure}

我无法发布结果图像,但它是这样的:

8.1 Cliente
Image. -> Not centered.

8.2 Contratto
Image. -> Not centered.

8.3 Società
NO IMAGE -> It is in the next page.

8.4 Impianti
NO IMAGE -> It is in the next page.

另一个问题:如何在不使用屏幕截图的情况下在 LaTex 中插入查询 SQL 的结果?“查询结果”的意思是:

+----------+----------+
| Col1     | Col2     |
+----------+----------+
| Val1     | Val2     |
+----------+----------+

希望有人能帮助我,谢谢:)

抱歉我的英语不好。

答案1

你可以使用\centering或者\begin{center},也许这个帮你。

相关内容