在 Lyx 中,我正在尝试创建一个“插图”模块

在 Lyx 中,我正在尝试创建一个“插图”模块

我正在尝试在 Lyx 中创建Illustration下拉菜单。为此,我在theorems-ams-bytype.module和行中创建了一个模块theorems-ams-bytype.inc

这是里面的代码:

Style Example
CopyStyle             Definition
LatexName             example
LabelString           "Illustration \theexample."
Preamble
 \theoremstyle{definition}
  \newtheorem{example}{\protect\examplename}[chapter]
EndPreamble
Requires              amsthm
LangPreamble
  \providecommand{\examplename}{_(Illustration)}
EndLangPreamble
BabelPreamble
  \addto\captions$$lang{\renewcommand{\examplename}{_(Illustration)}}
EndBabelPreamble
LabelCounter          example
End

代码中应该做什么以便我能够得到一个漂亮的tikz盒子或者在盒子mdframe周围使用一些灰色的圆形盒子illustration

现在,插图看起来像一个示例(来自theorem风格),但我希望它看起来像下面的概念框。

在此处输入图片描述

答案1

这是代码建议。我没有使用过 Lyx。

\documentclass{article}

\usepackage{lipsum}
\usepackage[framemethod=tikz]{mdframed}
\usetikzlibrary{shadows}

\mdtheorem[roundcorner=5pt,backgroundcolor=gray!10,
 shadow=true,frametitlerule=true,
 middlelinewidth=1pt,frametitlerulewidth=1pt,
innertopmargin=\topskip,
apptotikzsetting={\tikzset{mdfbackground/.append style={left color=gray!10!white,right color=white},
mdfframetitlebackground/.append style ={left color=white,right color=gray!10!white}}}]{concept}{Concept}

\begin{document}    

\begin{concept}
If $a^m=a^n$ then $m=n$ or $a=1$ or $a=-1$ and $m$, $n$ are even integers.
\end{concept}
\end{document}

在此处输入图片描述

相关内容