2 つの異なるクラスの注釈が付いた 2 つの一致するドキュメントがあります。ドキュメント クラス、序文などはすべて同じです。1 つのファイルをエクスポートすると、TOC でパート見出しが中央揃えになりますが、もう 1 つのファイルでは、パート見出しが左揃えになります。左揃えにしたいのですが、パート見出しが TOC で中央揃えになる原因となるコードを LyX に誤って挿入した可能性があります。誰か助けてくれませんか。TOC でパート見出しが中央揃えにならないようにするにはどうしたらよいですか。
私は Mac OS X Yosemite 10.10.3 で LyX 2.0.6 を使用しています。役に立つと思われるスクリーンショットを投稿できます。
更新1: %% LyX 2.0.6がこのファイルを作成しました。詳細については、http://www.lyx.org/. %% 自分が何をしているのか本当に分かっていない限り、編集しないでください。
\documentclass[10pt,english]{article}
\usepackage{fontspec}
\setmainfont[Mapping=tex-text]{Gentium Basic}
\setsansfont[Mapping=tex-text]{Linux Libertine}
\usepackage[letterpaper]{geometry}
\geometry{verbose,tmargin=1in,bmargin=1in,lmargin=1in,rmargin=1in}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\usepackage{array}
\usepackage{float}
\usepackage{makeidx}
\makeindex
\usepackage{graphicx}
\PassOptionsToPackage{normalem}{ulem}
\usepackage{ulem}
\usepackage[unicode=true,pdfusetitle,
bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
breaklinks=false,pdfborder={0 0 0},backref=false,colorlinks=false]
{hyperref}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
%% Because html converters don't know tabularnewline
\providecommand{\tabularnewline}{\\}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage{bibleref}
\usepackage{makeidx}
\makeindex
\renewcommand{\bvidxpgformat}{textit}
\usepackage[bottom]{footmisc}
\AtBeginDocument{
\def\labelitemiii{\(\triangleright\)}
\def\labelitemiv{\(\rightarrow\)}
}
\makeatother
\usepackage{xunicode}
\usepackage{polyglossia}
\setdefaultlanguage{english}
\begin{document}
\title{___}
\author{___}
\date{February 11-14; May 5-9, 2014\pagebreak{}\tableofcontents{}\pagebreak{}}
\maketitle
\part{Introductory Matters}
\section{Introduction}
答え1
私は、これが LyX によって生成されたコードではなく、ユーザーによって導入された欠陥であることを心から願っています。
\tableofcontents
日付フィールド内で単に呼び出すことはできません。
\documentclass{article}
\begin{document}
\title{LyX is strange}
\author{Wombat}
%\date{February 11-14; May 5-9, 2014\pagebreak{}\tableofcontents{}\pagebreak{}}% This is rubbish, sorry
\date{In 2014}
\maketitle
\clearpage
\tableofcontents
\clearpage
\part{Introductory Matters}
\section{Introduction}
\end{document}