我想要得到以下输出:
文本
(一)文本
文本
文本
也就是说,在一个子项之后,我想返回到最后一个数字,而不创建新的数字。有没有办法在没有 ERT 的情况下做到这一点?
答案1
是的,只需使用它Ctrl-Enter
来拆分项目文本即可。这就像\\
在 LaTeX 中插入一样。
Lyx MWE:
LyX 2.0 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 default
\paperfontsize default
\use_hyperref false
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 1
\use_mhchem 1
\use_mathdots 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 Enumerate
Text
\end_layout
\begin_deeper
\begin_layout Enumerate
Text
\begin_inset Newline newline
\end_inset
\begin_inset Newline newline
\end_inset
Text
\end_layout
\end_deeper
\begin_layout Enumerate
Text
\begin_inset Newline newline
\end_inset
\end_layout
\end_body
\end_document
LaTeX 版本:
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\begin{document}
\begin{enumerate}
\item Text
\begin{enumerate}
\item Text \\
\\
Text
\end{enumerate}
\item Text
\end{enumerate}
\end{document}
编辑:如果您希望文本与项目 (a) 对齐,您正在寻找一个语言学家包 linguex
,但没有 LyX 模块(但在这种情况下使用 ERT 框不会造成太大干扰):
\documentclass{article}
\usepackage{linguex}
\begin{document}
\ex. Text
\a. Text
\z. Text
\ex. Text
\end{document}
答案2
为位置奇怪的条目插入“自定义项目”
并将条目留空
这会给你带来:
答案3
LyX 本身支持此功能;不需要其他答案中的技巧。
在下面的:
第一项
(a)子项目
更多第一项
第二项
为每个项目创建一个单独的段落,包括“第一项的更多内容”段落。将其段落样式设置为正常(就像它不属于任何列表一样),然后按 Tab 键缩进它(就像您已经对子项目所做的那样)。现在,在 LyX 和 PDF 输出中,它们看起来都应该正确无误。