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