A0 세로 크기 포스터를 A1 세로 크기 포스터로 변환

A0 세로 크기 포스터를 A1 세로 크기 포스터로 변환

누구든지 내가 변환하도록 도와주세요.이것A1-Potrait' 포스터요? 내가 원하는 것은 포스터와 같은 스타일의 A1 크기 포스터뿐입니다.

 \documentclass[final]{beamer}
    \usepackage[T1]{fontenc}
    \usepackage{lmodern}  
    \usepackage{blindtext}
    \usepackage[english]{babel} 
    \usepackage{lipsum}
 \usepackage[orientation=portrait,size=a0,scale=1.0{beamerposter}
    \usetheme{gemini}
    \usecolortheme{nott}
    \usepackage{graphicx}
    \usepackage{booktabs}
    \usepackage{tikz}
    \usepackage{pgfplots}
    \pgfplotsset{compat=1.14}
    \usepackage{anyfontsize}
    \usepackage{xcolor}
    \usepackage[skip=2pt,font=normalsize]{subcaption}
    \usepackage{adjustbox}
    \usepackage{tikz}
    \usetikzlibrary{shapes.geometric, arrows}
    \tikzstyle{startstop} = [rectangle, rounded corners, minimum width=3cm, minimum height=1cm, text centered, text width = 10cm, draw=black, fill=white]
    \tikzstyle{process} = [rectangle, minimum width=3cm, minimum height=1cm, text centered, text width = 6cm, draw=black, fill=white, text width = 10cm]
    \tikzstyle{arrow} = [ultra thick,->,>=stealth]
    \newlength{\sepwidth}
    \newlength{\colwidth}
    \setlength{\sepwidth}{0.025\paperwidth}
    \setlength{\colwidth}{0.45\paperwidth}
    \newcommand{\separatorcolumn}{\begin{column}{\sepwidth}\end{column}}
    
    \title{Poster Title  Poster Title Poster Title Poster Title Poster Title Poster Title Poster Title Poster Title}
    \title{Poster Title for Condensed Matter Physics / High Energy Physics / Computational Physics}
    
    \author{First Author \inst{1} \and Corresponding Author \inst{1}}
    \institute[shortinst]{\inst{1} Indian Institute of Technology Jodhpur 
    }
    
    \footercontent{
    \href{https://www.lipsum.com}{\textbf{https://www.lipsum.com}} \hfill
    \textbf{International Conference on Physics} \hfill
    \href{mailto:[email protected]}{\textbf{Email Id}}}
    
    \logoleft{\includegraphics[height=8cm]{IITJ_logo.png}}
    
    \usepackage{pgf}
   \begin{document}
\fontsize{24pt}{36pt}\selectfont

\begin{frame}[t]
\begin{columns}[t]
\separatorcolumn

\begin{column}{\colwidth}

\begin{block}{Abstract}
\blindtext
\end{block}
  
\begin{exampleblock}{Research objectives}
\blindenumerate[3]
\end{exampleblock}
\end{document}

편집 [cfr]:다음은 환경을 미완성 상태로 두지 않고 치명적인 구문 오류를 포함하거나 비표준 파일에 의존하지 않는 위 코드의 보다 최소한의 작동 버전입니다. OP의 의도를 반영할 수도 있고 반영하지 않을 수도 있습니다. 그렇지 않은 경우 OP는 이를 최소한으로 유지하면서 편집할 수 있기를 바랍니다.

\documentclass[final]{beamer} 
\usepackage{blindtext}
\usepackage[orientation=portrait,size=a1,scale=1.0]{beamerposter}
\newlength{\sepwidth}
\newlength{\colwidth}
\setlength{\sepwidth}{0.025\paperwidth}
\setlength{\colwidth}{0.45\paperwidth}
\newcommand{\separatorcolumn}{\begin{column}{\sepwidth}\end{column}}

\begin{document}
\fontsize{24pt}{36pt}\selectfont

\begin{frame}[t]
  \begin{columns}[t]
    \separatorcolumn
    
    \begin{column}{\colwidth}
      
      \begin{block}{Abstract}
        \blindtext
      \end{block}
      
      \begin{exampleblock}{Research objectives}
        \blindenumerate[3]
      \end{exampleblock}
    \end{column}
  \end{columns}
\end{frame}
\end{document}

답변1

나는 파일을 있는 그대로 A0 형식으로 컴파일하고 작은 LaTeX 파일을 만듭니다.reduceposter.pdf

\documentclass{article}
\usepackage[paperwidth=594mm,paperheight=841mm]{geometry}
\usepackage{pdfpages}

\begin{document}

\includepdf{bigposter}% use the proper file name

\end{document}

\includepdf포스터가 포함된 PDF 파일의 이름 에 인수를 제공합니다 .

완전히 확장 가능한 글꼴을 제공하므로 anyfontsize더 이상 사용되지 않으며 필요하지 않습니다 .lmodern

관련 정보