나는 이미 여기에 대한 답변을 따르려고 노력했습니다. ToC 제목을 어떻게 바꾸나요?
사용하여\renewcommand{\contentsname}{Whatever}
LyX
그러나 서문이나 ERT에서는 작동하지 않는 것 같습니다 . 사용되는 패키지는 babel 입니다.
.lyx 파일의 최소 작업 예:
\pagenumbering{roman}
\renewcommand{\chaptername}{}
\renewcommand{\thechapter}{\arabic{chapter}}
\renewcommand{\contentsname}{Innholdsfortegnelse}
1. Innledning
\pagenumbering{arabic}
Heisann
답변1
Document> Settings...> Language>언어 패키지: None
Document> Settings...> LaTeX Preamble>
쓰다:
\usepackage[norsk]{babel}
\addto\captionsnorsk{%
\renewcommand{\contentsname}{Innholdsfortegnelse}}
결과는 다음 일반 LaTeX와 동일해야 합니다.
\documentclass{article}
\usepackage[norsk]{babel}
\addto\captionsnorsk{%
\renewcommand{\contentsname}{Innholdsfortegnelse}}
\begin{document}
\tableofcontents
\section{Section}
\end{document}
이렇게 하면 Package babel Error: Unknown language
xxxxx'`가 표시됩니다.
그런 다음View Complete Log ...
보시다시피 이전 실행 파일 \select@language {english}
에 가 있기 때문입니다. .aux
수동으로 제거할 수 있지만(Linux 시스템의 스크린샷의 경우 /tmp/lyx_tmpdir.T23297/lyx_tmpbuf6/newfile6.aux
) 클릭만 하면 CloseLyX가 보조 파일을 정리합니다(적어도 이 오류만 있는 경우). 다음 실행에서는 제대로 작동할 것입니다.
답변2
노력하다
\AtBeginDocument{\renewcommand\contentsname{Whatever}}