Skip to content

Commit

Permalink
Added watermark
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernesto Serrano authored and Ernesto Serrano committed Dec 6, 2024
1 parent 2a54295 commit 03a0f7d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
20 changes: 20 additions & 0 deletions slides/00_slides_sample.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ theme: default
paginate: true
---

<style>
/* Asegúrate de que cada sección tenga posición relativa */
section {
position: relative;
}

/* Estilo para la marca de agua */
section::before {
content: "BORRADOR";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) rotate(-60deg);
font-size: 5em;
color: rgba(0, 0, 0, 0.1);
z-index: 1; /* Debe estar detrás del contenido */
pointer-events: none; /* No interferir con la interacción */
}
</style>

# ¡Bienvenidos a Marp! 🚀

Un ecosistema para presentaciones basado en **Markdown**.
Expand Down
8 changes: 8 additions & 0 deletions thesis/thesis.tex
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@
\usepackage[export]{adjustbox}
\usepackage{fancybox}

% Marca de agua de Borrador
\usepackage{draftwatermark}
\SetWatermarkText{Borrador}
\SetWatermarkScale{1.5}
\SetWatermarkColor[gray]{0.9}
\SetWatermarkAngle{45}


\usepackage[backend=bibtex, style=ieee]{biblatex} % Uso de biblatex con biber y estilo IEEE
\addbibresource{../../bibliography/references.bib} % Ruta a tu archivo .bib

Expand Down

0 comments on commit 03a0f7d

Please sign in to comment.