我想将标题超曲面放在线的中心。
\documentclass[12pt,letterpaper]{article}
\usepackage[a4paper,left=25mm,top=25mm,right=25mm,bottom=25mm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}
\noindent \LARGE{\textbf{Hypersurfaces}}\\ [0.3cm]
\large{\textbf{1. Defining equation}}\\
In a 4d manifold, hypersurface is a 3d submanifold. It can be timelike,
spacelike or nulllike.\\
$\Sigma$ is defined by
\[\Phi(x^{\alpha})=0\]
\[x^{\alpha}=x^{\alpha}(y^a)\]
如何仅移动行中心的一个单词?
答案1
在设置已启动的文档时,最好使用正确的语义符号。在环境中设置标题center
,用于编号的节单元,并使用空行(不是)\section
分隔段落:\\
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{center}
\LARGE\bfseries Hypersurfaces
\end{center}
\section{Defining equation}
In a 4D manifold, hypersurface is a 3D submanifold. It can be timelike, space-like or null-like.
$\Sigma$ is defined by
\begin{gather}
\Phi(x^{\alpha}) = 0 \\
x^{\alpha} = x^{\alpha}(y^a)
\end{gather}
\end{document}
以功能性方式设置代码后,您可以以统一的方式更改格式。例如,如果您想在章节标题中的数字后添加句点,请按照如何在章节编号后添加点?。