Estoy usando un ejemplo continuo en mi texto, pero no sé cómo definir el entorno agradable correspondiente.
Estoy usando el paquete amsmath y ntheorem y definí mi propio entorno de ejemplo:
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{example}[theorem]{Example}
Estoy usando la siguiente clase de documento:
\documentclass[11pt,a4paper,twoside,openright]{book}
Lo que me gustaría es la posibilidad de continuar con el ejemplo, tal vez así.
\begin{example} \label{ex1}
This is an example.
\end{example}
Some text stands here. And then there is some space between this and the continued example.
Further should the continued example not be intended but start at the beginning of the line.
\begin{continuance}[\ref{ex1}]
This is the continued example.
\end{continuance}
Some more text, which should follow after a little vertical space.
Con el resultado:
Ejemplo 1.1Esto es un ejemplo.
Algún texto se encuentra aquí. Y luego hay algo de espacio entre esto y el ejemplo que continúa. Además, no se debe pretender que el ejemplo continúe, sino que comience al principio de la línea.
Continuación del ejemplo 1.1Este es el ejemplo continuo.
Un poco más de texto, que debería seguir después de un pequeño espacio vertical.
¿Cómo puedo definir este entorno de continuidad?
Editar: El problema ahora es que se ve así
Ejemplo 1.1Esto es un ejemplo.
Algún texto se encuentra aquí. Y luego hay algo de espacio entre esto y el ejemplo que continúa. Además, no se debe pretender que el ejemplo continúe, sino que comience al principio de la línea.
[Aquí hay una sangría] Continuación del ejemplo 1.1Este es el ejemplo continuo.
Un poco más de texto, que debería seguir después de un pequeño espacio vertical.
Respuesta1
Puedes usar \newtheorem*
:
\documentclass{book}
\usepackage{amsthm}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{example}[theorem]{Example}
\newtheorem*{continuancex}{Continuance of Example \continuanceref}
\newenvironment{continuance}[1]
{\newcommand\continuanceref{\ref{#1}}\continuancex}
{\endcontinuancex}
\begin{document}
\chapter{Title}
\begin{example} \label{ex1}
This is an example.
\end{example}
Some text stands here. And then there is some space between this and the continued example.
Further should the continued example not be intended but start at the beginning of the line.
\begin{continuance}{ex1}
This is the continued example.
\end{continuance}
Some more text, which should follow after a little vertical space.
\end{document}
De esta manera, utilizará el estilo general del teorema.
La siguiente versión funciona conntheorem
\documentclass{book}
\usepackage{ntheorem}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{example}[theorem]{Example}
\newcommand{\continuanceref}{}
\newtheorem{continuancex}{Continuance of Example}
\renewcommand{\thecontinuancex}{\continuanceref}
\newenvironment{continuance}[1]
{\renewcommand\continuanceref{\ref{#1}}\continuancex}
{\endcontinuancex}
\begin{document}
\chapter{Title}
\begin{example} \label{ex1}
This is an example.
\end{example}
Some text stands here. And then there is some space between this and the continued example.
Further should the continued example not be intended but start at the beginning of the line.
\begin{continuance}{ex1}
This is the continued example.
\end{continuance}
Some more text, which should follow after a little vertical space.
\end{document}
Aquí hay una versión funcional parababel
\documentclass{book}
\usepackage[english]{babel}
\usepackage{ntheorem,refcount}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{example}[theorem]{Example}
\newtheorem{continuancex}{Continuance of Example}
\renewcommand{\thecontinuancex}{\continuanceref}
\newenvironment{continuance}[1]
{\edef\continuanceref{\getrefnumber{#1}}\begin{continuancex}}
{\end{continuancex}}
\begin{document}
\chapter{Title}
\begin{example}\label{ex1}
This is an example.
\end{example}
Some text stands here. And then there is some space between this and the continued example.
Further should the continued example not be intended but start at the beginning of the line.
\begin{continuance}{ex1}
This is the continued example.
\end{continuance}
Some more text, which should follow after a little vertical space.
\end{document}
Respuesta2
necesita dos ejecuciones de LaTeX para obtener referencias correctas:
\documentclass[11pt,a4paper,twoside,openright]{book}
\usepackage{amsmath}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{example}[theorem]{Example}
\newenvironment{continuance}[1]
{\par\bigskip\noindent\textbf{Continuence of Example #1. }\itshape}
{\par}
\begin{document}
\begin{example} \label{ex1}
This is an example.
\end{example}
Some text stands here. And then there is some space between this and the continued example.
Further should the continued example not be intended but start at the beginning of the line.
\begin{continuance}{\ref{ex1}}
This is the continued example.
\end{continuance}
\end{document}