Search found 3 matches

by kaku92
Sun Apr 26, 2015 2:15 am
Forum: Graphics, Figures & Tables
Topic: Positioning two column figures
Replies: 3
Views: 4023

Positioning two column figures

Try this

Code: Select all

\begin{figure}
  %\caption{} %if you want it in top 
  \begin{subfigure}
    %add your first graphics here 
  \end{subfigure}
  \begin{subfigure}
    %add your second graphics here 
  \end{subfigure}
   .
   .
   .
\end{figure}
by kaku92
Sun Apr 26, 2015 1:46 am
Forum: Theses, Books, Title pages
Topic: No newpage before each chapter
Replies: 1
Views: 24337

No newpage before each chapter

Try this example

\renewcommand{\cleardoublepage}{}
\renewcommand{\clearpage}{}

%---------------------------------------------
\documentclass{report}
\usepackage{blindtext}
\begin{document}
\chapter{Conclusions}\label{chap:end}


\blindtext

\renewcommand{\cleardoublepage}{}
\renewcommand ...
by kaku92
Sun Apr 26, 2015 1:11 am
Forum: Theses, Books, Title pages
Topic: how to set the figure's position
Replies: 2
Views: 6196

how to set the figure's position

Try this

Code: Select all

\begin{figure}[h] %this 'h' mean here,other option 't':Top, 'b':bottumn
  %some text
\end{figure}