두 개의 서로 다른 수업에 대한 메모가 포함된 두 개의 일치하는 문서가 있습니다. 문서 클래스, 서문 등은 모두 동일합니다. 한 파일에서 내보낼 때 TOC는 부품 제목을 중앙에 배치하고 다른 파일에서는 부품 제목을 왼쪽 정렬합니다. 왼쪽 정렬을 원하지만 의도치 않게 LyX에 어떤 코딩을 삽입하여 목차에서 부품 제목이 가운데 정렬되도록 할 수 있는지 이해하지 못합니다. 누군가 나를 도와줄 수 있나요? 내 파일이 TOC의 부품 제목을 중앙 정렬하지 않도록 하려면 어떻게 해야 합니까?
저는 LyX 2.0.6을 사용하고 있습니다. Mac OS X 요세미티 10.10.3. 도움이 될 경우 스크린샷을 게시할 수 있습니다.
업데이트 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}