我正在尝试在 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}