LyX の複雑な命名法エントリ

LyX の複雑な命名法エントリ

特に複雑な命名法エントリを作成しようとすると (具体的には、中括弧を挿入する場合)、$E_{\left(A_i|B_I\right)}$ドキュメントの後半で命名法エントリを実行すると結果が表示されません。下付き文字を含め、その他すべては正常に動作しますが、中括弧だけが壊れているように見えます。

答え1

\midの代わりにを使用するという Mico の提案は、|スタイルのためだけではなく、問題の解決にもなります。

$E_{\left(A_i\mid B_I\right)}$

編集: egreg が指摘しているように、\left(LaTeX\right)に関してはここでは何もせず、場合によっては不要なスペースが追加されることがあります。OP がそうしているので、ここに残しておきます。LyX は対応する数式を異なる方法でレンダリングすることに注意してください ( LyX ではleft(\right)括弧が大きくなります)。

出力:

ここに画像の説明を入力してください

MWE .lyx ファイルは次のとおりです。

#LyX 2.1 created this file. For more info see http://www.lyx.org/
\lyxformat 413
\begin_document
\begin_header
\textclass article
\use_default_options true
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command makeindex -g
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 1
\use_mathdots 1
\use_mhchem 1
\cite_engine basic
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Standard
\begin_inset CommandInset nomenclature
LatexCommand nomenclature
symbol "$E_{\\left(A_i\\mid B_I\\right)}$"
description "description..."

\end_inset


\end_layout

\begin_layout Standard
\begin_inset CommandInset nomencl_print
LatexCommand printnomenclature
set_width "auto"

\end_inset


\end_layout

\end_body
\end_document

そしてLaTeX (pdflatex)にエクスポートします:

%% LyX 2.1.0dev 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{nomencl}
% the following is useful when we have the old nomencl.sty package
\providecommand{\printnomenclature}{\printglossary}
\providecommand{\makenomenclature}{\makeglossary}
\makenomenclature
\usepackage{babel}
\begin{document}
\nomenclature{$E_{\left(A_i\mid B_I\right)}$}{description...}

\settowidth{\nomlabelwidth}{$E_{\left(A_i\mid B_I\right)}$}
\printnomenclature{}
\end{document}

関連情報