Lyx - 向分支添加自动文本并格式化

Lyx - 向分支添加自动文本并格式化

我在 Lyx 中使用分支,我想在编译文档时在某个分支的开头添加文本。这可能吗?另外,我想以特殊方式格式化某个分支 - 比如将某个分支设为特定颜色。

答案1

您可以使用 LyX 的布局格式来自定义特定分支(开始使用 LyX 2.1.0 版本)。下面我将展示如何让分支始终以绿色显示其内容,并将 LaTeX 包装在绿色\textcolor命令中。

  1. 转到“插入”>“分支”>“插入新分支”。我将其命名为“myGreenBranch”。如果您更改名称,请在下面的步骤 2 中也进行更改。
  2. 在步骤 1 中创建的分支插图中输入一些文本。
  3. 激活分支插图(这样我们将能够看到 PDF 输出)。
  4. 转到文档 > 设置。
  5. 单击“本地布局”选项卡并粘贴以下内容。

    Format 60
    InsetLayout Branch:myGreenBranch
      Font
        Color green
      EndFont
      LatexName textcolor{green}
      LatexType command
      Requires color
    End
    
  6. 然后单击“验证”和“确定”。

以下是 LyX 显示的示例:

在此处输入图片描述

相应的 PDF 输出如下:

在此处输入图片描述

有关未来如何自定义分支的更多信息,请阅读“帮助”>“自定义”中的“Flex insets 和 InsetLayout”部分。

感谢@TorbjørnT. 帮助我意识到这是可能的。

下面我提供了一个完整的示例 .lyx 文件:

#LyX 2.2 created this file. For more info see http://www.lyx.org/
\lyxformat 508
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass article
\use_default_options true
\maintain_unincluded_children false
\begin_local_layout
Format 60
InsetLayout Branch:myGreenBranch
  Font
    Color green
  EndFont
  LatexName textcolor{green}
  LatexType command
  Requires color
End
\end_local_layout
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman "default" "default"
\font_sans "default" "default"
\font_typewriter "default" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\graphics default
\default_output_format default
\output_sync 1
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification true
\use_refstyle 1
\branch myGreenBranch
\selected 1
\filename_suffix 0
\color #faf0e6
\end_branch
\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
Here is some normal text, and the following will be green: 
\begin_inset Branch myGreenBranch
status open

\begin_layout Standard
this text is green, in the LyX display and in the PDF output
\end_layout

\end_inset


\end_layout

\end_body
\end_document

相关内容