Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

help for import picture in Latex

Status
Not open for further replies.
use 'graphicx' package in the preamble for importing pictures.

write \includegraphics{...}
command for inserting the pictures.
 
  • Like
Reactions: perado

    perado

    Points: 2
    Helpful Answer Positive Rating
the style file dont write this package in preamble, If I added this to preample Isnt against the journal style file?
at the end of this journal style file is a place for biography and the picture of author must warp with text in a column, How I can do it?

it is the preamble of style file:
\documentclass[twoside,twocolumn]{article}
\usepackage{epsf}
\usepackage{psfig}
\usepackage{times}
\usepackage{latexsym}
\usepackage{amsbsy}
\usepackage{ifthen}
\usepackage{archiv2e}

and its the part for biography:

% Author's Biography (delete in case of a Letter): full name, text
\Biography{Ralf Wendel}{was born in Wesselburen, Germany 1962.
He received the
masters degree (Dipl.-Ing.) in 1988 and the doctorate of engineering
(Dr.-Ing.) in 1994 from the University of Hannover, Germany. From 1989
to 1994 he was a research assistant at the Institut f\"ur
Hochfre\-quenztechnik
of the University of Hannover. Since 1995 he is with the circulator
department of Philips Semiconductors, Hamburg, Germany. He is an expert
in numerical calculation of passive microwave components. Currently he is
working on circulators, isolators and couplers for applications in
modern base stations for mobile communication.}
% Repeat for each author

\end{document}

I want warp author picture like this:
7_1289132645.jpg


How its possible for me to do it?
 
Last edited:

as far as i know the style files you are referring(epsf) etc are deprecated.

graphicx is recommended instead of epsf now.

and in your paper style file(you have attached) , you have to use postscript(or eps) figures only.

whereas in graphicx , you can include eps . tiff , jpg , png etc.

just include graphicx and try latexing your paper .
three or four trial runs you will get the journal style format.
 
  • Like
Reactions: perado

    perado

    Points: 2
    Helpful Answer Positive Rating
Thanks for your reply
I include graphicx and can import jpg picture in my paper
but now my question is about warp picture that I attach a sample in last post, can you tell me how I can do it?
 

help me plzzz :(
 

is it that you want the picture by the side of text?

what is in your current dvi or ps output ?
picture above text ?
 

yes I want that the text be side of my picture(same the file I attached) but I dont know what I do,
I add \usepackage{wrapfig} in the preamble and then add below to the end of biography part that I attached before, but when I compile latex my picture dont placed correctly
\begin{wrapfigure}{L}{25mm}
\includegraphics[width=2cm]{s.jpg}
\end{wrapfigure}
 

try:
\begin{wrapfigure}{l}{25mm}

(it will always be 2cm irrespective of your paper size.)
 

I try but I dont know why the text dont place be side of my picture , it is that what I do:

% Author's Biography (delete in case of a Letter): full name, text
\Biography{Ralf Wendel}{was born in Wesselburen, Germany 1962.
He received the
masters degree (Dipl.-Ing.) in 1988 and the doctorate of engineering
(Dr.-Ing.) in 1994 from the University of Hannover, Germany. From 1989
to 1994 he was a research assistant at the Institut f\"ur
Hochfre\-quenztechnik
of the University of Hannover. Since 1995 he is with the circulator
department of Philips Semiconductors, Hamburg, Germany. He is an expert
in numerical calculation of passive microwave components. Currently he is
working on circulators, isolators and couplers for applications in
modern base stations for mobile communication.}
% Repeat for each author
\begin{wrapfigure}{l}{25mm}
\includegraphics{s.jpg}
\end{wrapfigure}

\end{document}
 

where is the picture placed as of now ?
 

the picture is at top of the text
 

write your wrapfigure environment in a line after \Biography ... line.


and in \includegraphics...
write as \includegraphics[h]{s.jpg}

test for one author.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top