编辑:我调整了整个文档的边距,这在某种程度上解决了这个问题,但我仍然希望有一个更优雅的修复方法。
我是 LaTeX 新手,如果这是一个非常简单的问题,我很抱歉。我到处找过了,但找不到任何解决方案,不过我还是新手。
我正在用部分、子部分等组织我的文件,并且我正在用节点制作 tikz 图表。图表的实际创建很好,但它与子部分下的其他所有内容具有相同的偏移量,并且我快没地方了。有没有办法将图表置于页面的中心或以某种方式尝试让所有内容都可见?
这是我的基本代码:
\section{Structure Overview}
\subsection{Path Graph}
\begin{tikzpicture}[
% Define Node Types
]
% Draw Nodes
% Draw Edges
\end{tikzpicture}
我也尝试过同样的事情centering
:
\section{Structure Overview}
\subsection{Path Graph}
{\centering
\begin{tikzpicture}[
% Define Node Types
]
% Draw Nodes
% Draw Edges
\end{tikzpicture}
}
与\begin{center}
:
\section{Structure Overview}
\subsection{Path Graph}
\begin{center}
\begin{tikzpicture}[
% Define Node Types
]
% Draw Nodes
% Draw Edges
\end{tikzpicture}
\end{center}
它们都存在相同的对齐问题,并且它们在页面上的位置几乎完全相同。解决方案\centering
和解决方案都\begin{center}
将图形向左移动了一点,但最左侧节点的左侧有足够的空间,而最右侧节点无论我编译哪一个都超出了页面。
在此先感谢您的帮助。