Search found 120 matches

by yoyoimut
Fri Dec 03, 2010 9:18 am
Forum: LEd
Topic: PSTricks cannot be displayed in LED. How to solve it?
Replies: 4
Views: 28579

Re: PSTricks cannot be displayed in LED. How to solve it?

@Herbert, thanks. I must wait for the LED update.
by yoyoimut
Tue Nov 30, 2010 10:45 am
Forum: LEd
Topic: PSTricks cannot be displayed in LED. How to solve it?
Replies: 4
Views: 28579

PSTricks cannot be displayed in LED. How to solve it?


did you run the sequenz latex->dvips->ps2pdf?
And did you viewed the ps or pdf output?

Herbert

Experiment 1:

Clean up the folder containing the input file (except for the file input).
Click the green PLAY button to execute latex.exe. The dvi viewer on the right display the output, but ...
by yoyoimut
Tue Nov 30, 2010 6:23 am
Forum: LEd
Topic: PSTricks cannot be displayed in LED. How to solve it?
Replies: 4
Views: 28579

PSTricks cannot be displayed in LED. How to solve it?

The following link does not help me, so I create a new one.
http://www.latex-community.org/forum/viewtopic.php?f=45&t=9440&hilit=LED+pstricks&start=10



I have a minimal code as follows:

\documentclass[dvipsnames]{article}


\usepackage{pstricks,lipsum}

\begin{document}

\section{Test}
\lipsum[1 ...
by yoyoimut
Wed Nov 24, 2010 6:17 am
Forum: General
Topic: showexpl: how to skip the first n rows and the last m rows?
Replies: 1
Views: 1962

showexpl: how to skip the first n rows and the last m rows?

I got the answer using linerange option.
by yoyoimut
Wed Nov 24, 2010 4:36 am
Forum: General
Topic: How to vertically center an equation in a merged row?
Replies: 2
Views: 5180

How to vertically center an equation in a merged row?

I got a nice solution from "CV Radhakrishnan" using nested tabular as follows:



\documentclass{article}
\usepackage{multirow,longtable,array}

\begin{document}

\begin{tabular}{|*{2}{c@{}|@{}}}
\hline
\parbox[c][1cm]{5cm}{Description}
& \parbox[c][1cm]{5cm}{~~~Formula}\\\hline ...
by yoyoimut
Wed Nov 24, 2010 3:39 am
Forum: General
Topic: showexpl: how to skip the first n rows and the last m rows?
Replies: 1
Views: 1962

showexpl: how to skip the first n rows and the last m rows?

Dear all,

I am using showexpl.sty to display side by side the code snippet and its corresponding output.

Because of the paper size limit, I intentionally want to remove the "redundant" rows, i.e., the first n rows and the last m rows from the code snippet.

Is it possible to do that in showexpl ...
by yoyoimut
Mon Nov 01, 2010 9:05 am
Forum: General
Topic: How to vertically center an equation in a merged row?
Replies: 2
Views: 5180

How to vertically center an equation in a merged row?

Dear all,

I have an equation in a multi row cell (aka a merged cell) that should be vertically centered.

I do using the following code snippet:


\documentclass{article}
\usepackage{multirow,longtable,array}

\begin{document}
\begin{tabular}{|*{2}{c|}}
\hline
\parbox[c][1cm]{5cm}{Description ...
by yoyoimut
Thu Oct 28, 2010 1:00 pm
Forum: General
Topic: How to right align left superscript with left subscript
Replies: 2
Views: 8950

Re: How to right align left superscript with left subscrip

Thank you Joseph!

It is the best solution.


regards,

Yoyo
by yoyoimut
Thu Oct 28, 2010 12:12 pm
Forum: General
Topic: How to right align left superscript with left subscript
Replies: 2
Views: 8950

How to right align left superscript with left subscript

Dear all,

Please see my screenshot below for the detail.


Chemistry.jpg


\documentclass{article}
\usepackage{graphicx}

\newcommand{\scale}{15}
\begin{document}

\verb|$_{123}^{~\hfill23}\textrm{U}$|\\[1cm]

\scalebox{\scale}{$_{123}^{~\hfill23}\textrm{U}$}

\end{document}


Thank you in ...
by yoyoimut
Thu Oct 28, 2010 6:03 am
Forum: General
Topic: first label gets lost when enumerate enclosing LTXexample
Replies: 2
Views: 2298

first label gets lost when enumerate enclosing LTXexample

Accidently, I found the solution of this bug.
Just wrap the previous with minipage and the bug vanishes.



\documentclass{article}
\usepackage{showexpl}

\begin{document}
\begin{enumerate}
\item%
\begin{minipage}{\linewidth}
\begin{LTXexample}
Something
\end{LTXexample}
\end{minipage}
\item ...