
Estoy utilizando la siguiente plantilla LaTeX para crear pequeños carteles con fondo de color y con una amplia variedad de dimensiones, normalmente muy alejadas de los formatos de papel habituales. Por supuesto, esto a veces causa problemas porque LaTeX está, generalmente, muy orientado a A4, al menos desde mi perspectiva profana.
El problema que estoy enfrentando actualmente es que mi nombre y dirección de correo electrónico aparecen en el centro del margen inferior, como una especie de pie de página muy pequeño. Sin embargo, mis experimentos fancyhdr
no tuvieron éxito, ya que tuve que aumentar bastante el tamaño del margen inferior para que el pie de página fuera visible. Preferiría evitar cambiar tanto el diseño debido a un detalle tan pequeño, entonces, ¿alguien tiene una buena solución para esto?
PD: Como puede resultar obvio a partir de la siguiente plantilla, no soy un usuario experto de LaTeX, así que siéntete libre de señalar cualquier otra cosa que pueda estar haciendo completamente mal. ;-)
\documentclass[20pt]{article}
\renewcommand{\familydefault}{\sfdefault}
\usepackage{graphicx, color}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\color{black}
% If I want a picture background:
%\newlength\imageheight
%\newlength\imagewidth
%\newcommand*\imagefilename{../TEMPLATES/Backgrounds/Yellow(1).png}
%
%\newcommand{\imagescale}{0.6}
%\settoheight{\imageheight}{\includegraphics[scale=\imagescale]{\imagefilename}}
%\settowidth{\imagewidth}{\includegraphics[scale=\imagescale]{\imagefilename}}
%
%\usepackage[
% paperwidth=\imagewidth,
% paperheight = \imageheight,
% top=0.03\imagewidth,
% bottom=0.03\imagewidth,
% left=0.03\imagewidth,
% right=0.03\imagewidth
% ]{geometry}
%
%\usepackage{wallpaper}
%\ULCornerWallPaper{1}{\imagefilename}
%If I want a homogeneous colour background:
\newlength\mypagewidth
\newlength\mypageheight
\setlength\mypagewidth{200pt}
\setlength\mypageheight{115pt}
\usepackage[
paperwidth=\mypagewidth,
paperheight = \mypageheight,
top=0.03\mypageheight,
bottom=0.03\mypageheight,
left=0.03\mypagewidth,
right=0.03\mypagewidth
]{geometry}
\pagecolor{black}
%Other packages
\usepackage{enumerate,siunitx,comment,amssymb,amstext,amsthm,array,xspace,xkeyval,xfrac,bm,mathtools,listings, wasysym, tikz, pgfplots}
\usepackage[normalem]{ulem}
%\usepackage{IEEEtrantools}
%\usepackage[cm]{sfmath}
\usepackage{cmbright} %Sans-serif in math mode.
%Language:
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
%A \yesnumber command, allowing me to easily insert equation numers.
\newcommand*{\yesnumber}{\refstepcounter{equation}\tag{\theequation}}
%Special commands:
\renewcommand{\le}{\leqslant}
\renewcommand{\ge}{\geqslant}
\newcommand{\N}[0]{\mathbb{N}}
\newcommand{\Z}[0]{\mathbb{Z}}
\newcommand{\Q}[0]{\mathbb{Q}}
\newcommand{\R}[0]{\mathbb{R}}
\newcommand{\C}[0]{\mathbb{C}}
\pagestyle{plain}
\usepackage{mathdots}
\begin{document}
\begin{center}
{\Huge Title}
\end{center}
Lorem ipsum.........................
\end{document}
Respuesta1
Podrías usar elbackground
paquete. El paquete le permite colocar fácilmente material arbitrario en la posición deseada en todas o algunas de las páginas de su documento; puedes controlar los atributos del material (color, escala, posición, ángulo, etc.). Un pequeño ejemplo:
\documentclass{article}
\renewcommand{\familydefault}{\sfdefault}
\usepackage{graphicx, color}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
%\color{black}
% If I want a picture background:
%\newlength\imageheight
%\newlength\imagewidth
%\newcommand*\imagefilename{../TEMPLATES/Backgrounds/Yellow(1).png}
%
%\newcommand{\imagescale}{0.6}
%\settoheight{\imageheight}{\includegraphics[scale=\imagescale]{\imagefilename}}
%\settowidth{\imagewidth}{\includegraphics[scale=\imagescale]{\imagefilename}}
%
%\usepackage[
% paperwidth=\imagewidth,
% paperheight = \imageheight,
% top=0.03\imagewidth,
% bottom=0.03\imagewidth,
% left=0.03\imagewidth,
% right=0.03\imagewidth
% ]{geometry}
%
%\usepackage{wallpaper}
%\ULCornerWallPaper{1}{\imagefilename}
%If I want a homogeneous colour background:
\newlength\mypagewidth
\newlength\mypageheight
\setlength\mypagewidth{200pt}
\setlength\mypageheight{115pt}
\usepackage[
paperwidth=\mypagewidth,
paperheight = \mypageheight,
top=0.03\mypageheight,
bottom=0.03\mypageheight,
left=0.03\mypagewidth,
right=0.03\mypagewidth
]{geometry}
%\pagecolor{black}
%Other packages
\usepackage{enumerate,siunitx,comment,amssymb,amstext,amsthm,array,xspace,xkeyval,xfrac,bm,mathtools,listings, wasysym, tikz, pgfplots}
\usepackage[normalem]{ulem}
%\usepackage{IEEEtrantools}
%\usepackage[cm]{sfmath}
\usepackage{cmbright} %Sans-serif in math mode.
%Language:
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
%A \yesnumber command, allowing me to easily insert equation numers.
\newcommand*{\yesnumber}{\refstepcounter{equation}\tag{\theequation}}
%Special commands:
\renewcommand{\le}{\leqslant}
\renewcommand{\ge}{\geqslant}
\newcommand{\N}[0]{\mathbb{N}}
\newcommand{\Z}[0]{\mathbb{Z}}
\newcommand{\Q}[0]{\mathbb{Q}}
\newcommand{\R}[0]{\mathbb{R}}
\newcommand{\C}[0]{\mathbb{C}}
\pagestyle{plain}
\usepackage{background}
\backgroundsetup{
scale=0.6,
angle=0,
color=black,
position=current page.south,
contents={Some text},
vshift=6pt
}
\usepackage{mathdots}
\begin{document}
\begin{center}
{\Huge Title}
\end{center}
Lorem ipsum.........................
\end{document}
La opción global 20pt
no es reconocida por la article
clase.