Here are several Tips which we encountered. I assume you are not a novice of LaTeX. If you are, these tips might be difficult to understand and please refer to other website or books first. A best free resource is "The Not So Short Introduction to LaTeX2e" (Gzipped Postscript version), or PDF version.You can find others in General documentation about (La)TeX.
Do you need more? Handbooks are very useful. They have not only LaTeX but also vi, emacs, C, and so on. (Thanks José).
My favorite books are on this page.
$\phi$
Below info works well, but old info. You don't have to obey this.
Modify the scaling ("Magnif") in the "Export" menu if you need.
So far, I don't know how to change the scale in LaTeX file, when you include the equations with LaTeX format in your schematic.
\documentclass{article} \usepackage{epsfig} \begin{document}
scalebox
change your scale in postscript file,
but you may not see scaled figure in dvi file.
eg.
\begin{figure}[h] \centerline{ \scalebox{0.8}{ \input{foo.pstex_t} } } \caption{This is an example} \label{fig-eg} \end{figure}
\begin{figure}[h] \centerline{ \epsfig{file=foo2.eps, scale=0.5} } \caption{Picture without equations} \label{fig-eg2} \end{figure}
minipage
command!
figure1.eps
and figure2.eps
are the EPS figures.
\begin{figure}[h]
\hfill
\begin{minipage}[t]{.45\textwidth}
\begin{center}
\epsfig{file=figure1.eps, scale=0.5}
\caption{figure 1}
\label{fig-tc}
\end{center}
\end{minipage}
\hfill
\begin{minipage}[t]{.45\textwidth}
\begin{center}
\epsfig{file=figure2.eps, scale=0.5}
\caption{figure 2}
\label{fig-tc}
\end{center}
\end{minipage}
\hfill
\end{figure}
subfigure
package in your header,
i.e. use\usepackage{subfigure}
See p.152 in LaTeX companion book for more detail.\begin{figure}[htbp] \begin{center} \mbox{ \subfigure[Honda]{\scalebox{0.3}{\input{prelude.pstex_t}}} \quad \subfigure[Toyota]{\scalebox{0.3}{\input{celica.pstex_t}}} \quad \subfigure[Nissan]{\scalebox{0.3}{\input{FairladyZ.pstex_t}}} } \caption{I like these!} \label{fig:my_car} \end{center} \end{figure}
\begin{figure}[htbp] \begin{center} \mbox{ \subfigure[Honda]{\scalebox{0.3}{\input{prelude.pstex_t}}} \quad \subfigure[Toyota]{\scalebox{0.3}{\input{celica.pstex_t}}} } \mbox{ \subfigure[Nissan]{\scalebox{0.3}{\input{FairladyZ.pstex_t}}} \quad \subfigure[Subaru]{\scalebox{0.3}{\input{Outback.pstex_t}}} } \caption{I like these!} \label{fig:my_car} \end{center} \end{figure}
rotating
package and use
sidewaysfigure
instead of a
figure
environment.
Refer LaTeX companion book (p.327).
/nfs/dither/analog2/tmp/XFIG.lib/Libraries
Here is my modified eps file.
I just put this eps file into the author fields.\author{ \\ \centerline{\epsfig{file=logo_black.eps, scale=0.3}} \\ Tetsuya Kajita \\ \\ {\small Advisor: Prof. XXXX } \\ {\small Co-Advisor: Prof. YYYY } }Our (OSU) officical site is here. But I found their EPS file has a trouble. There are some unwanted "binary" codes at the beginning and the end of the eps file. You should remove them. Or use my modified file for ease.
Should I tell them ... ? Yes. I did, but no reply yet. :-)
\begin{figure}[ht] \centerline{\resizebox{1.00\linewidth}{!}{\input{fig0b.pstex_t}}} \caption{A switched-capacitor DAC} \label{f0} \end{figure}Another example, for \epsfxsize:
\begin{figure}[ht] \centerline{\epsfxsize 1.00\linewidth \epsfbox{fig1array.eps}} \caption {A switched-capacitor DAC with the proposed analog mismatch correction} \label{f1} \end{figure}
Thanks to José for this tip.
\documentclass{slides}
But I hear that you can't include eps files in it.
And this way may be not good for presentations. So, I'm using
seminar pkg.
psselect -r slides.ps | psnup -2 -pletter -b10 -d4 > slides.ps2
Thanks to José for this tip.
pstoedit
command.1. Create a tex file containing only the desired picture; 2. Compile it with LaTeX; 3. Create a eps file with: dvips -E picture.eps -o picture.dvi If the bounding box doesn't look right, you can adjust it by editing the file picture.eps. Look for the following line in the beginning: %% BoundingBox: There are four numbers following this line: Lower left x, Lower left y, Upper right x, Upper right y ... which you can adjust to fit your desired bounding box. When you are done, it is straightforward to include this in Word, or any other program that accepts eps files.
To ignore page numbers: \pagestyle{empty} but which will still keeps the page number for the first page. To ignore that one also you should add to the first page (only): \thispagestyle{empty}
\documentclass[12pt,letterpaper,notitlepage,openright,twoside]{report} \usepackage{fancyhdr} \usepackage{epsfig} \usepackage{rotating} %\usepackage{amssymb} \pagestyle{fancy} \renewcommand{\chaptermark}[1]{\markboth{#1}{}} \renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}{}} \fancyhf{} \fancyhead[LE,RO]{\bfseries\thepage} \fancyhead[LO]{\bfseries\rightmark} \fancyhead[RE]{\bfseries\leftmark} \renewcommand{\headrulewidth}{0.5pt} \renewcommand{\footrulewidth}{0.0pt} \addtolength{\headheight}{2.5pt} % 0.5pt \fancypagestyle{plain}{ \fancyhead{} \renewcommand{\headrulewidth}{0pt} } \begin{document}
\renewcommand \thesection{\roman{section}}
If you need a period after the roman number,
\renewcommand \thesection{\roman{section}.}
The second example may bring another problem when you have sub-section. i.e. an extra dot after the number.
Last modified: Fri Oct 27 16:05:26 2000