
\documentclass[a0,final]{a0poster}
%%%Load packages
\usepackage{multicol} %3-column layout
\usepackage[left=3cm,right=3cm,bottom=0cm,top=0cm]{geometry} %Reset margins
\usepackage{helvet} %Load Helvetica font & CM math
\usepackage{color} %Needed for colour boxes & coloured text
\usepackage{graphics}
%%%Define colours and lengths
\definecolor{headingcol}{rgb}{1,1,1} %Colour of main title
\definecolor{boxcol}{rgb}{0.7,0.2,0.2} %Edge-colour of box and top banner
\fboxsep=1cm %Padding between box and text
\setlength{\columnsep}{3cm} %Set spacing between columns
\renewcommand{\familydefault}{\sfdefault} %Set main text to sans-serif
%%%Format title
\makeatletter %Needed to include code in main file
\renewcommand\@maketitle{%
\null %Sets position marker
{
\color{headingcol}\sffamily\VERYHuge %Set title font and colour
\@title \par}%
\vskip 0.6em%
{
\color{white}\sffamily\large %Set author font and colour
\lineskip .5em%
\begin{tabular}[t]{l}%
\@author
\end{tabular}\par}%
\vskip 1cm
\par
}
\makeatother
\title{hello world \LaTeX}
\author{Author A \& Author B\\
University College London}
\begin{document}
\hspace{-3cm} %Align with edge of page, not margin
\colorbox{boxcol}{ %Coloured banner across top
\begin{minipage}{1189mm} %Minipage for title contents
\maketitle
\end{minipage}}
\vspace{1cm}
\begin{multicols}{3} %Use 3-column layout
\raggedcolumns %Don't stretch contents vertically
%%%Column1
\section*{Introduction}
\section*{Method}
\includegraphics[scale=0.5cm]{burnsideTri.png}
\columnbreak
%%%Column 2
\section*{Maths}
\section*{Lists and tables}
\columnbreak
%%%Column 3
\section*{Discussion}
\nocite*
%\bibliographystyle{plain}
%\bibliography{halobib}
\end{multicols}
\end{document}
含める画像を拡大したいのですが、\includegraphics[]{} の [] フィールドに何かを入れようとすると、エラーが発生します。ただし、\includegraphics{} だけの場合は機能します。誰か解決策を教えてもらえますか?
あれは、
\section*{Method}
\includegraphics[scale=0.5cm]{burnsideTri.png}
なぜここでエラーがスローされるのか?
\includegraphics{burnsideTri.png}
答え1
画像を拡大縮小するコマンドは\includegraphics[scale=0.5]{burnsideTri.png}
( ではありません0.5cm
) です。特定の幅を指定したい場合は になりますwidth=0.5cm
。
前者の方がはるかに新しいので、 のgraphicx
代わりにをロードする必要があります(後者は使用したことがないので、スケーリングが機能しない可能性がありますが、わかりません)。graphics
MWE がどのようなものかを説明するためです。
ノイズを除いた質問は次のようになります。
\documentclass{a0poster}
\usepackage{graphics}
\begin{document}
\includegraphics[scale=0.5cm]{burnsideTri.png}
\end{document}
そしてこれが私の答えです:
% arara: pdflatex
\documentclass{a0poster}
\usepackage[demo]{graphicx} % the demo option must be taken away. I did not have you image
\begin{document}
\includegraphics[scale=0.5]{burnsideTri} % the file ending png can be ommited.
\end{document}