Search found 8 matches

by Namrod
Fri May 24, 2013 3:00 pm
Forum: TeXShop
Topic: Warning on Quit
Replies: 2
Views: 25202

Re: Warning on Quit

You can modify the shortcut in System Preferences > Keyboard > Application Shortcuts (or something like that, I am on a french computer). Then, click on +, choose TeXShop application. The title of the command is Source ⇔ Preview and then you can modify the shortcut as you want.
by Namrod
Fri May 24, 2013 2:30 pm
Forum: Page Layout
Topic: Section Numbers and Names in Header
Replies: 4
Views: 4346

Section Numbers and Names in Header

Here you can use the \markright command. For example :

Code: Select all

\section*{Theory}
\markright{Theory}
by Namrod
Tue Apr 30, 2013 9:26 am
Forum: Page Layout
Topic: Horizontal Line spanning the complete Page
Replies: 2
Views: 21347

Horizontal Line spanning the complete Page

To draw an horizontal line spanning the page, you can use the \rule command with a width equal to the width of the page ( \paperwidth ). But don't forget to put it in a \makebox . Without that, the line will not go through the left margin. For example :

\documentclass{article}
\usepackage[margin ...
by Namrod
Sat Apr 27, 2013 6:10 pm
Forum: General
Topic: Two pagerefs that possibly refer to the same page
Replies: 2
Views: 4254

Two pagerefs that possibly refer to the same page

You can create your own command which compare the page of the 2 formulas. For example, using the ifthen package :

\newcommand{\pageeq}[2]{\ifthenelse{\pageref{#1}=\pageref{#2}}{page \pageref{#1}}{pages \pageref{#1} and \pageref{#2}}}

Thus with this code :

\documentclass{article}

\usepackage ...
by Namrod
Sat Apr 27, 2013 9:41 am
Forum: General
Topic: Incomprehensible Error Message
Replies: 2
Views: 4949

Re: Incomprehensible Error Message

It would be easier to answer if we had your LaTeX code...

Without that I can just say that you must have forgotten a } somewhere...
by Namrod
Fri Apr 26, 2013 10:17 pm
Forum: Page Layout
Topic: Layout for Seminar Paper
Replies: 1
Views: 4471

Layout for Seminar Paper

These solutions seem to be right. In LaTeX documents, the text is justified by default. You can use Times font with using the mathpmx package instead of the mathpazo one and then set the font size with \footnotesize , \tiny , \small , \ \normalfont , \large , \Large , \huge or \Huge (from the ...
by Namrod
Fri Apr 26, 2013 10:04 pm
Forum: Fonts & Character Sets
Topic: Japanese Characters
Replies: 1
Views: 2368

Japanese Characters

Which distribution do you use ? I use TeXLive2012 and p(la)tex was installed on my computer. You can also try :

Code: Select all

sudo port install texlive-lang-cjk
in the Terminal, which will install ptex and all what you need to use japanese characters.

An other solution is to use the CJK package.
by Namrod
Fri Apr 26, 2013 9:48 pm
Forum: New Members
Topic: Hello from France
Replies: 2
Views: 2687

Hello from France

Hi !

I am a French LaTeX user comming from Dijon ! I use it since 2 or 3 years, first for my maths lessons in the highschool and now for my works in history of art and archaeology in the university (undergraduate level).

I hope I will be able to solve my LaTeX problems, and perhaps even help some ...