정말 얇은 바닥글

정말 얇은 바닥글

저는 아래 LaTeX 템플릿을 사용하여 배경색이 다양하고 일반적으로 일반 종이 형식과는 매우 다른 다양한 크기의 작은 포스터를 만듭니다. 물론 LaTeX는 적어도 평신도의 관점에서 볼 때 일반적으로 매우 A4 지향적이기 때문에 때때로 문제가 발생합니다.

현재 제가 겪고 있는 문제는 제 이름과 이메일 주소가 하단 여백 중앙에 아주 작은 바닥글처럼 표시되도록 하는 것입니다. 그러나 fancyhdr바닥글을 표시하려면 아래쪽 여백의 크기를 상당히 늘려야 했기 때문에 내 실험은 다소 실패했습니다. 나는 이렇게 작은 세부 사항 때문에 레이아웃을 바꾸는 것을 피하고 싶습니다. 이에 대한 좋은 해결책이 있는 사람이 있습니까?

PS 아래 템플릿에서 알 수 있듯이 저는 숙련된 LaTeX 사용자가 아니므로 제가 완전히 잘못하고 있는 것이 무엇이든 자유롭게 지적해 주십시오. ;-)

\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}

답변1

당신은background패키지. 이 패키지를 사용하면 문서 전체 또는 일부 페이지의 원하는 위치에 임의의 자료를 쉽게 배치할 수 있습니다. 재료의 속성(색상, 크기, 위치, 각도 등)을 제어할 수 있습니다. 약간의 예:

\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}

여기에 이미지 설명을 입력하세요

글로벌 옵션은 클래스 20pt에서 인식되지 않습니다 article.

관련 정보