[Tex/LaTex] Tufte-handout without margin

fontstemplates

I just started to write LaTeX document with "tufte-handout". The interesting thing I found was the look-up of output.

I did this one:

\documentclass{tufte-handout}
\usepackage{amsmath, amssymb}
\begin{document}
{\bf Example.} $\mathfrak{sl}(2,F)$ has no non-trivial ideals if char $F\neq 2$. 
If Char $F=2$ then center is non-trivial and is a non-trivial ideal.
\end{document}

The output was of the following form: please ignore left and top column.

enter image description here

Notice that theere is too much space on the right side of the output file. Perhaps, this is an important feature of "tufte-handout" – to keep space on right for remarks, notes, comments etc.
It (font) is much different (and looks beautiful to me) than usual roman font.

What do I want: I wanted to write my documents in the above font-style. But I don't want to leave space on right-side for remarks, notes etc. With "tufte-handout" or other way, how can I do this?

In other words, I want to write very-commonly type of document-typing, but with condition that, the font should be of above type only.

In short, I want the font same as in above output file and document without margins (as like book-writing or notes typing)

Best Answer

The font used by tufte-handout can be loaded with any other document class as well by saying

\usepackage[T1]{fontenc}
\usepackage[osf,sc]{mathpazo}

If you also want to mimic the sans-serif and mono font styles, add these

\usepackage[scaled=0.90]{helvet}
\usepackage[scaled=0.85]{beramono}

Full example with the article document class

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[osf,sc]{mathpazo}
\usepackage{amssymb}
\begin{document}
\textbf{Example.} $\mathfrak{sl}(2,F)$ has no non-trivial ideals if
char $F\neq 2$.  If Char $F=2$ then center is non-trivial and is a
non-trivial ideal.
\end{document}

enter image description here