Estoy intentando crear un marco con dos partes. Ambos conectados como en la imagen de abajo. Quiero usarlo para escribir lo que quiera y no necesito contadores. Quiero hacer los contadores yo mismo. Intenté utilizar un cuadro de teoremas pero no es lo que quiero.
Quiero poder usar este contador de teoremas dentro por separado.Conteo jerárquico avanzado para teoremas
Entonces, solo quiero hacer la caja sin contadores.
Gracias
Respuesta1
El paquete tcolorbox (https://ctan.org/pkg/tcolorbox) probablemente haga todo lo que le gustaría hacer. Aquí hay un ejemplo:
\documentclass[english,11pt,a5paper]{article}
\usepackage{tcolorbox}
\tcbuselibrary{skins,breakable}
\newtcolorbox{MyQuestion}[2][]{%
enhanced, breakable,
title style={green!30}, % background color of the top field
colback=red!5, % background color of the bottom field
colframe=blue!65, % color of the frame
width=\textwidth, % width of the box
%
sharp corners, % or use `arc=6pt` instead of `sharp corners`
%
boxsep=5pt, % space around the title text
left=6pt,right=6pt, % spacing of text inside the box
top=5pt,bottom=5pt,
%
bottomrule=3pt, toprule=5pt, % thicknesses of various lines
leftrule=1pt, rightrule=1pt,
titlerule=1pt,
%
title={\color{red}#2},
#1 % everything that is inside [] of \begin{MyQuestion}[]
}
\begin{document}
\begin{MyQuestion}{%
Question 1. So, I was taking a walk the other day.
And I see a woman pacing up and down ...
}
Solution: ... \\
\end{MyQuestion}
\end{document}
que se parece a esto:
Elegí intencionalmente algunos colores diferentes para que cambiarlos fuera más fácil.
Aunque haya dicho que se encargará "manualmente" de los contadores, puede ser útil saber que tcolorboxes también admite contadores personalizados para entornos (simplemente busque "contadores" en la documentación de tcolorbox que puede encontrar en el enlace anterior) .