我怎样才能在 tex 代码中或直接在 Lyx GUI 中将零件标题放在中心。
例如而不是这个:
Part I
Introduction and Background theory
这:
Part I
Introduction and Background theory
梅威瑟:
% Preview source code
%% LyX 2.1.3 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\begin{document}
\begin{center}
\part{Test abcabc}
body text
\end{center}
\end{document}
答案1
您是否选中了创建居中环境的选项?例如\begin{center}Part I ...\end{center}
或开关\centering
?那将用于如何在 TeX 中居中。我不知道 LyX GUI 是否提供该选项,但我会假设它提供。从我的手机发送。如果需要,可以提供带有示例的更详细的解释。
我明白了。你可以使用
% Preview source code
%% LyX 2.1.3 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\usepackage{sectsty}
\partfont{\centering}
\begin{document}
\part{Test abcabc}
body text
\end{document}