如何改变 LyX 定理的显示方式?

如何改变 LyX 定理的显示方式?

这些定理目前都以粗体显示,但我想以小写字母显示它们。

我的问题与这个很相似。 但是,我正在使用带有 AMS 样式文档类的 LyX,并且无法实现上述线程中的任何建议,主要是因为我无法弄清楚如何在 LyX 序言中使用它们。


谢谢 Herbert。我不太确定你想让我展示什么。你想看 Lyx 生成的前言本身吗?还是你在寻找更具体的东西?我怀疑下面的内容比你想要的还要多。

谢谢你的帮助。

% Preview source code

%% LyX 1.6.8 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[11pt,oneside,english]{amsart}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage[letterpaper]{geometry}
\geometry{verbose,tmargin=1.23in,bmargin=1.23in,lmargin=1in,rmargin=1in}
\usepackage{babel}

\usepackage{float}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{amssymb}
\usepackage[authoryear]{natbib}
\onehalfspacing
\usepackage[unicode=true, pdfusetitle,
 bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
 breaklinks=false,pdfborder={0 0 1},backref=false,colorlinks=false]
 {hyperref}

\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\numberwithin{equation}{section}
  \theoremstyle{plain}
  \newtheorem{assumption}{Assumption}
  \theoremstyle{plain}
  \newtheorem{prop}{Proposition}[section]
  \theoremstyle{definition}
  \newtheorem{defn}{Definition}[section]
  \theoremstyle{plain}
  \newtheorem{lem}{Lemma}[section]
  \theoremstyle{plain}
  \newtheorem{thm}{Theorem}[section]
  \theoremstyle{plain}
  \newtheorem*{algorithm*}{Algorithm}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\makeatletter \renewenvironment{proof}[1][\proofname] {\par\pushQED{\qed}\normalfont\topsep6\p@\@plus6\p@\relax\trivlist\item[\hskip\labelsep\bfseries#1\@addpunct{.}]\ignorespaces}{\popQED\endtrivlist\@endpefalse} \makeatother

\makeatother

\begin{document}

答案1

要在 LyX 中自定义文档序言,请转到主菜单:

  1. 打开菜单Document
  2. 点击菜单项Settings
  3. 选择标有的编辑字段LaTeX preamble并在其中输入您的代码。

因此这会起作用,类似于您链接的问题:

\newtheoremstyle{mytheoremstyle} % name
    {\topsep}                    % Space above
    {\topsep}                    % Space below
    {\itshape}                   % Body font
    {}                           % Indent amount
    {\scshape}                   % Theorem head font
    {.}                          % Punctuation after theorem head
    {.5em}                       % Space after theorem head
    {}  % Theorem head spec (can be left empty, meaning ‘normal’)
\theoremstyle{mytheoremstyle}
\newtheorem{thm}{Theorem}[section]

以及另一种方法thmtools的接口:amsthm

\usepackage{thmtools}
\declaretheoremstyle[headfont=\scshape]{mystyle}
\declaretheorem[style=mystyle]{thm}

相关内容