作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 LaTex 很陌生,正在尝试将图形居中。
我尝试使用 float
和 [h]
使用包 [H]
,我尝试添加 \centering
并尝试将图像包装在 \begin{center} \end{centering}
中,但似乎没有任何效果。
我的完整代码是这样的
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{float}
\graphicspath{ {images/} }
\title{Dissertation}
\author{GC}
\date{\today}
\begin{document}
\maketitle
\section{Introduction}
\begin{figure}[H]
\centering
\includegraphics{my_grades}
\caption{grades plot}
\label{fig:grade}
\end{figure}
This figure does not seem to want to centre
\end{document}
编译文档上的这个数字看起来是这样的。如果有人可以帮助我理解为什么这不想移动,那就太好了:
最佳答案
你的代码看起来不错,我只是在你的包含图形中添加了一个 [width=50mm] 并将图居中。
我会检查两个问题:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{float}
\graphicspath{ {images/} }
\title{Dissertation}
\author{GC}
\date{\today}
\begin{document}
\maketitle
\section{Introduction}
\begin{figure}[H]
\centering
\includegraphics[width=50mm]{darth-vader_5yvm.jpeg}
\caption{grades plot}
\label{fig:grade}
\end{figure}
This figure does not seem to want to centre
\end{document}
关于latex - 尽管使用\centering,Latex 中的图形并未居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62848279/
我是一名优秀的程序员,十分优秀!