New MembersHello all

You would like to introduce yourself before starting to post? That's a nice idea and here is the forum for you...
Post Reply
ivanwest
Posts: 10
Joined: Fri Jul 11, 2008 1:04 am

Hello all

Post by ivanwest »

Hello to all good folk,
My name is Ivan and I was bitten by the latex bug 3 days ago. Kinda kicking myself, as I'm into my final year of studies and only just got onto Latex.
Progress has been pretty good to date, however, like all newcomers I have a few questions. I am trying to write text between two figures, as below;

[Figure 1] I want to place text here. [Figure 2]

This is for a cover page for my thesis. Figure 1 & 2 are the uni emblems.

I am also trying to setup the following layout. All appropriate packages are used and I get no errors with the below code. However when I build the file (pdf) the items Purpose, Description and Duration are not aligned. I want to be able to align them and also maintain alignment between the text that comes after the items. I have played with the align, enumerate, description and itemize environments but this is the best I can get at the moment.

Code: Select all

\bigskip\noindent\textbf{Task 1: Project Definition, Management and Planning}
\begin{itemize}[leftmargin=68pt, labelsep=15pt, itemindent=0pt]
\item[\textbf{Purpose:}]To define the scope and objectives of the project and to develop the tasks and schedule for the successful completion of the project.

\item[\textbf{Description:}]The project management documentation will be developed during this task. The management documentation will include; Initial Client Brief, Project Task Breakdown Structure, Project Task Outline and Project Schedule.
\item[\textbf{Duration:}]Seven weeks.
\medskip\newline\textbf{Resources:}\hspace{.3in}Personal computer, Project management resources, Thesis guidelines.
\medskip\newline\textbf{Outputs:}\hspace{.3in}Project management documentation for thesis.

\end{itemize}
Thank you in advance to any help given. :D

Cheers

Ivan

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Hello all

Post by gmedina »

Hi Ivan,

Welcome to this board!

I hardly ever visit this subforum so I didn't see your post until today. It would be preferable to post questions in one of this other subforums:
LaTeX -> General or
Latex -> Packages & Document Classes.

Anyway, the following code contains some possible solutions to your questions. In the first case, you can use minipage environments (I used \rule to simulate actual images). In the second case, I used some of the features provided by the enumitem package. Refer to the documentation for further information.

Code: Select all

\documentclass{article}
\usepackage{enumitem}

\begin{document}

\begin{minipage}{.3\textwidth}
  \centering
  \rule{3cm}{2cm}
\end{minipage}
some text in between
\begin{minipage}{.3\textwidth}
  \centering
  \rule{3cm}{2cm}
\end{minipage}

\bigskip\noindent\textbf{Task 1: Project Definition, Management and Planning}
\begin{description}[font=\bfseries,leftmargin=2.3cm,style=sameline]
  \item[Purpose:]To define the scope and objectives of the project and to develop the tasks and schedule for the successful completion of the project.

  \item[Description:]The project management documentation will be developed during this task. The management documentation will include; Initial Client Brief, Project Task Breakdown Structure, Project Task Outline and Project Schedule.

  \item[Duration:]Seven weeks.
  \begin{description}[font=\bfseries,leftmargin=0pt,style=sameline]
    \item[Resources:]Personal computer, Project management resources, Thesis guidelines.
    \item[Outputs:]Project management documentation for thesis.
  \end{description}
\end{description}

\end{document}
Edit: minor modifications to the code.
Last edited by gmedina on Tue Jul 15, 2008 5:26 pm, edited 1 time in total.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
tripwire45
Posts: 129
Joined: Thu Apr 10, 2008 4:35 am

Re: Hello all

Post by tripwire45 »

Greetings, ivanwest. Welcome.

-Trip
Post Reply