Created
November 10, 2024 22:41
-
-
Save vicapow/58ff1fa66b26863d4d7d9241cdba3d14 to your computer and use it in GitHub Desktop.
Example of using tcolorbox in Latex / Ejemplo de uso de tcolorbox en LaTeX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{tcolorbox} | |
\newtcolorbox{shadedsection}[1][]{ % Custom box with options / Caja personalizada con opciones | |
colback=blue!20, % Background color of the box / Color de fondo de la caja | |
colframe=blue!50, % Border color of the box / Color del borde de la caja | |
boxrule=0pt, % Border thickness (0pt = no border) / Grosor del borde (0pt = sin borde) | |
width=\textwidth, % Box width, same as the text width / Ancho de la caja, igual al ancho del texto | |
sharp corners, % No rounded corners / Sin esquinas redondeadas | |
left=0pt, right=0pt, top=2pt, bottom=2pt, % Padding / Relleno | |
#1 % Allow customization via optional parameters / Permitir personalización a través de parámetros opcionales | |
} | |
\begin{document} | |
\section{Example of Shaded Paragraph \\ Ejemplo de Párrafo Sombreado} | |
\begin{shadedsection} | |
This is a paragraph within a shaded section. The shaded background extends beyond the text's length and fills the width of the page, creating a bar-like effect in the background. This can be useful for highlighting important sections without being restricted to the exact text dimensions. | |
\end{shadedsection} | |
\begin{shadedsection} | |
Este es un párrafo dentro de una sección sombreada. El fondo sombreado se extiende más allá de la longitud del texto y llena el ancho de la página, creando un efecto de barra en el fondo. Esto puede ser útil para resaltar secciones importantes sin estar restringido a las dimensiones exactas del texto. | |
\end{shadedsection} | |
\begin{shadedsection}[colback=red!10] % Custom color for this section | |
Here is another shaded paragraph, using a light blue background color. You can customize the shading color and other properties to suit different sections. | |
\end{shadedsection} | |
\begin{shadedsection}[colback=red!10] | |
Aquí hay otro párrafo sombreado, usando un color de fondo azul claro. Puedes personalizar el color del sombreado y otras propiedades para adaptarlas a diferentes secciones. | |
\end{shadedsection} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment