Estou usando um exemplo contínuo em meu texto, mas não sei como definir o ambiente agradável correspondente.
Estou usando o pacote amsmath e ntheorem e defini meu próprio ambiente de exemplo:
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{example}[theorem]{Example}
Estou usando a seguinte documentclass:
\documentclass[11pt,a4paper,twoside,openright]{book}
O que eu gostaria é de uma possibilidade de continuar o exemplo talvez assim
\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.
Com o resultado:
Exemplo 1.1Isto é um exemplo.
Algum texto está aqui. E há algum espaço entre este e o exemplo continuado. Além disso, o exemplo continuado não deve ser pretendido, mas começar no início da linha.
Continuação do Exemplo 1.1Este é o exemplo continuado.
Mais um pouco de texto, que deverá seguir após um pequeno espaço vertical.
Como posso definir esse ambiente de continuidade?
Edit: O problema agora é que fica assim
Exemplo 1.1Isto é um exemplo.
Algum texto está aqui. E há algum espaço entre este e o exemplo continuado. Além disso, o exemplo continuado não deve ser pretendido, mas começar no início da linha.
[Aqui está um recuo] Continuação do Exemplo 1.1Este é o exemplo continuado.
Mais um pouco de texto, que deverá seguir após um pequeno espaço vertical.
Responder1
Você pode 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}
Dessa forma, você usará o estilo geral do teorema.
A versão a seguir funciona comntheorem
\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}
Aqui está uma versão 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}
Responder2
precisa de duas execuções de LaTeX para referências corretas:
\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}