Search found 4 matches

by gibsonsdad
Tue Dec 31, 2013 5:53 am
Forum: Graphics, Figures & Tables
Topic: Difficulty choosing packages for pstricks
Replies: 3
Views: 4625

Re: Difficulty choosing packages for pstricks

Here is a link to the document (it is a bit long to post here).

https://drive.google.com/folderview?id=0B0R0rk2WGZh5NXdCLV8zYUtlYW8&usp=sharing

If you compile it, you will see that the pspicture lacks axes. If I include a package that allows the axes to show, none of my text shows. I am using a ...
by gibsonsdad
Mon Dec 30, 2013 1:11 am
Forum: Graphics, Figures & Tables
Topic: Difficulty choosing packages for pstricks
Replies: 3
Views: 4625

Difficulty choosing packages for pstricks

I am attempting to learn pstricks, and am having some difficulty choosing the correct \usepackage{} commands. I am using TexnicCenter, and have the following preambles

\documentclass[12pt]{article}
\pagestyle{myheadings} \markright{HEADING}
\pagenumbering{arabic}
\usepackage[nocolor]{pstricks ...
by gibsonsdad
Fri Dec 27, 2013 2:44 am
Forum: Text Formatting
Topic: Conditional Formatting using ifthen
Replies: 1
Views: 7896

Conditional Formatting using ifthen

I solved it. It is really quite simple. I used the following code;

\documentclass[12pt]{article}
\usepackage{ifthen, color}
\begin{document}
%Create the boolean flag cs (Choice Selector)
\newboolean{cs}
%Set the value of cs
\setboolean{cs}{false}
%Create a new command to set the text color ...
by gibsonsdad
Thu Dec 26, 2013 5:35 pm
Forum: Text Formatting
Topic: Conditional Formatting using ifthen
Replies: 1
Views: 7896

Conditional Formatting using ifthen

I am attempting to create a master document for creating multiple choice mathematics assessments. I want to be able to create two versions, the student version, and the teacher version. The student version should format all choices the same. The teacher version should indicate the correct answer ...