Search found 45 matches

by alainremillard
Thu May 12, 2016 8:15 pm
Forum: Text Formatting
Topic: Exam class Question Numbering
Replies: 4
Views: 22112

Exam class Question Numbering

The original post uses the exam class, but there is no {truefalse} environment in this package.

Did you use the examdesign Please update you post to a Infominimal working example and idealy start a new thread
by alainremillard
Thu May 12, 2016 7:49 pm
Forum: Page Layout
Topic: columns of different widths
Replies: 3
Views: 3283

columns of different widths

The package vwcol might be what you are looking for
by alainremillard
Tue Jun 16, 2015 7:43 pm
Forum: Page Layout
Topic: Book format in two columns with memoir class
Replies: 3
Views: 3306

Book format in two columns with memoir class

have a look at the Tufte-latex class. It's not a perfect fit for your need, but it is a good start.

Have a nice day
by alainremillard
Wed Apr 29, 2015 5:46 pm
Forum: Graphics, Figures & Tables
Topic: TikZ (\foreach): how to join function points
Replies: 6
Views: 8557

TikZ (\foreach): how to join function points

Not sure about what you meant, but could this solve your problem.

% -------- f) Draw Function (elastica)
\begin{scope}[xshift=0cm, yshift=1cm, rotate=0, scale=1]
\draw [color=magenta!55,fill=gray!55,domain=0:2,samples=50] plot (\x,{-\x/2+\x*\x*\x/24}) -- (2,0) -- (0,0);
\foreach \x in {0,0.05 ...
by alainremillard
Tue Apr 28, 2015 2:06 am
Forum: Graphics, Figures & Tables
Topic: TikZ (\foreach): how to join function points
Replies: 6
Views: 8557

TikZ (\foreach): how to join function points

I could think of two solutions. First create a temporary point before the \foreach loop and link it with the current point, as below.

% -------- f) Draw Function (elastica)
\begin{scope}[xshift=0cm, yshift=1cm, rotate=0, scale=1]
\coordinate (temp) at (0,0);
\foreach \x in {0,0.05,...,2.05 ...
by alainremillard
Mon Feb 02, 2015 7:41 pm
Forum: Page Layout
Topic: Difficulty with title page and logo
Replies: 26
Views: 21986

Difficulty with title page and logo

Great work so far. I'm happy to see that latex is slowly growing in different Cégep in Québec. 8-)

Here is my two cents.

First of all, every piece of text is within a \textsf{} . You could define it globaly by putting \sffamily inside the titlepage environment. It will clean your code and it ...
by alainremillard
Mon Feb 02, 2015 6:12 pm
Forum: Text Formatting
Topic: Change \choice style with examdesign class
Replies: 5
Views: 8738

Change \choice style with examdesign class

Looking through the examdesign class files, there is no mechanism to change this behavior. So, you'll have to redefine the command. The following should do the trick. Place it just before the \begin{document}


\makeatletter
\renewcommand{\exam@DefaultChoice}[2][]{%
\ifchoice \relax
\else ...
by alainremillard
Wed Oct 22, 2014 5:50 pm
Forum: Text Formatting
Topic: label for a question in exam class
Replies: 3
Views: 6825

label for a question in exam class

If you are asking about cross-reference, they are done the same way latex does, with \label{tag} and \ref{tag} . You may have to run latex twice to get every reference right.


\documentclass[12pt]{exam}
\begin{document}
\begin{questions}
\question[]my question? \label{myquestion} \\
\begin ...
by alainremillard
Fri Jun 06, 2014 5:16 pm
Forum: Page Layout
Topic: Properly Align Sections and Subsections
Replies: 2
Views: 13794

Properly Align Sections and Subsections

titlesec has a way to do this. Its documentation give the definition of the normal classes in latex

\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}
{\normalfont\large\bfseries}{\thesubsection}{1em}{}

Then modify it to enclose the number in a ...
by alainremillard
Fri May 30, 2014 5:00 pm
Forum: Document Classes
Topic: \documentclass{moderncv}
Replies: 8
Views: 30231

\documentclass{moderncv}


First the address is printing at the bottom of each page as a footnote. I don't know where to look to fix this.


To change this you have to change the \moderncvstyle{} at the beginning. Your is set to casual , there is also classic , banking and oldstyle . Those where found on ctan, but I don't ...