「命名法」の名前の変更が Lyx で機能しない

「命名法」の名前の変更が Lyx で機能しない

提案されたコマンドが Lyx で動作しないのはなぜでしょうか? 私は「Book (標準) クラス」を使用しています。 皆さん、ありがとうございます!

\renewcommand\nomname{New Name for Nomenclature}

編集:

Lyx のドキュメント設定のプリアンブルにコマンドを入力する必要があります。実際には [\printnomenclature] コマンドは使用していませんが、ドキュメントのさらに下の方に表示されます。

これを通常の LaTeX ファイルに変換すると、lyx で生成された命名法エントリがコマンドの上にあることがわかります (Phelype が示唆したとおり)。ただし、Lyx でこれを変更する方法はわかりません。

%% LyX 2.3.0 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[12pt,oneside,12pt,a4paper,titlepage]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[a4paper]{geometry}
\geometry{verbose,tmargin=3cm,bmargin=3cm,lmargin=2.5cm,rmargin=3.5cm}
\setlength{\parskip}{0bp}
\setlength{\parindent}{0pt}
\usepackage{xcolor}
\usepackage{textcomp}
\usepackage{amsmath}
\usepackage{setspace}
\PassOptionsToPackage{normalem}{ulem}
\usepackage{ulem}
\usepackage{nomencl}
% the following is useful when we have the old nomencl.sty package
\providecommand{\printnomenclature}{\printglossary}
\providecommand{\makenomenclature}{\makeglossary}
\makenomenclature
\setstretch{1.5}
\usepackage[unicode=true,pdfusetitle,
 bookmarks=true,bookmarksnumbered=false,bookmarksopen=true,bookmarksopenlevel=1,
 breaklinks=false,pdfborder={0 0 1},backref=false,colorlinks=false]
 {hyperref}

\makeatletter


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage[light]{CormorantGaramond}
\usepackage{slantsc}
\usepackage{hanging}
\usepackage{graphicx}
\usepackage[font=footnotesize,labelfont=footnotesize]{caption}
%\usepackage{subcaption}
\usepackage[english, french, ngerman]{babel}
\usepackage{changepage}

%-----Literatur- und Siglenverzeichnis------
\renewcommand\nomname{Siglenverzeichnis}

答え1

ようやく問題を解決できました。Lyxは命名法の名前に関する自動コマンドを追加しているようですユーザーが書いた序文。

「命名法」の名前を変更するには、次のコマンドを追加する必要があります。

\renewcommand\nomname{New Name}

直接TeXコードとして直接メイン文書に追加します。目次に追加するには、以下も含める必要があります。

\def\nompreamble{\addcontentsline{toc}{chapter}{\nomname}\markboth{\nomname}{\nomname}}

前文に。

関連情報