Citar en el encabezado del teorema y darle un nombre al teorema.

Citar en el encabezado del teorema y darle un nombre al teorema.

Me gustaría crear un teorema con nombre y citarlo en el encabezado de esta manera:

Teorema 5.3 [1, Teorema 1.1][NOMBRE]

No he visto un libro en el que un autor haya usado ese estilo, pero me gustaría usar ese tipo de referencia para mi tesis. (¿O hay una mejor manera de hacerlo?)

Lo que probé:

\documentclass[12pt]{scrartcl}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{cite}
\newtheorem{theorem}{Theorem}[section]
\usepackage{filecontents}

\begin{filecontents*}{Literatur3.bib}
@book{GEOR,
Author = {Hans-Otto Georgii},
Publisher = {de Gruyter},
Title = {Stochastik},
Year = {2009}}

\end{filecontents*}
\bibliography{Literatur3.bib}
\begin{document}

\begin{theorem}[{\cite[6.30]{GEOR}}][Name]
    ...
\end{theorem}
\end{document}
 
 

pero eso produce un error "El argumento de @citex tiene un extra}. \begin{Teorema}[\cite[6.30]"

¿Existe una forma correcta de hacer esto?

¡Gracias de antemano!

Respuesta1

Su ejemplo no produce una bibliografía. Si soluciono esto, ya sea usando:

\documentclass[12pt]{scrartcl}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{cite}
\newtheorem{theorem}{Theorem}[section]
\usepackage{filecontents}

\begin{filecontents*}{Literatur3.bib}
@book{GEOR,
Author = {Hans-Otto Georgii},
Publisher = {de Gruyter},
Title = {Stochastik},
Year = {2009}}
\end{filecontents*}
\begin{document}

\begin{theorem}[{\cite[6.30]{GEOR}}][Name]
  ...
\end{theorem}

\bibliographystyle{plain}% the old bibtex way
\bibliography{Literatur3.bib}% the old bibtex way

\end{document}

o (recomendaría esto):

\documentclass[12pt]{scrartcl}
\usepackage{amsthm}
\usepackage{mathtools}
\newtheorem{theorem}{Theorem}[section]
\usepackage{filecontents}

\begin{filecontents*}{Literatur3.bib}
@book{GEOR,
Author = {Hans-Otto Georgii},
Publisher = {de Gruyter},
Title = {Stochastik},
Year = {2009}}
\end{filecontents*}

\usepackage[style=authoryear,backend=biber]{biblatex}
\addbibresource{Literatur3.bib}

\begin{document}

\begin{theorem}[{\cite[6.30]{GEOR}}][Name]
  ...
\end{theorem}

\printbibliography

\end{document}

No recibo mensaje de error. El último ejemplo produce:

ingrese la descripción de la imagen aquí

información relacionada