emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Aditya Mandayam <adityams@gmail.com>
To: Jambunathan K <kjambunathan@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: References in Latex
Date: Tue, 26 Jul 2011 14:56:54 -0400	[thread overview]
Message-ID: <CABiTF5MZ2CwtMbF=7Py429pQrUHW7tjRpG=aGjLHGY3SEg1fnA@mail.gmail.com> (raw)
In-Reply-To: <817h746fyp.fsf@gmail.com>

i see. apologies.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
here is my .org file in question:

The Shrewdness of Apes
#+AUTHOR: Aditya Zalewski-Mandayam
#+LaTeX_CLASS: handout
#+OPTIONS: toc:nil timestamp:nil num:f

* Introduction
The photographic act consists of three principal parts. They are varied.

** The Technique

** The Apparatus

** The Spectrum
   Here the term spectrum is as first used by Barthes\cite{barthes1994camera}.

   Photography is a brutal act. The vocabulary surrounding a
photograph is violent. There are shutters & filters & bellows;
aberrations & distortions; solarizers, polarizers, sensitizers;
developers, fixers, stoppers; these, in conjunction with those other
progeny of the industrial revolution, are used to shoot subjects, to
capture them.

A dark-room is simply that: a camera oscura. It is at once terrifying
& purposeful in its intent. Film & paper, once exposed to the tyranny
of that lies without, may not lie naked again until they have been
rehabilitated, until they have recovered to a state where they are
deemed meaningful\cite{tagg2009disciplinary}. This process of
selection is exquisite in its sadism; we now have machines that make
light of these macabre methods.

The earliest kind of photograph is the blink. A blink is a
preventative mechanism. One blinks to see better. One blinks to
lubricate. A blink is also a pause. It is when Man first noticed the
images formed on the inside of his eyelids, at once black & orange,
shape-shifting & electric, that the seeds of photography were sown.

The sneeze came next. Now we had a sound to emulate: the
shutter\cite{tagg1988burden}.

The Eye is King. The Mind is his Queen. They have no children.

We now live within that panoply of apparati the mechanical Eye has
birthed: chortles, sniffles, chuckles, giggles; cracks, queefs, farts,
wheezes; yawns\cite{barthes1978image}, moans, grimaces, frissons;
burps & belches, whispers & snores.

\bibliography{apes}
\bibliographystyle{plainnat}

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
here are the relevant lines from my .emacs:

(require 'org-install)
(require 'org-latex)
(unless (boundp 'org-export-latex-classes)
(setq org-export-latex-classes nil))
(add-to-list 'org-export-latex-classes
             `("handout"

"\% rubber: set program xelatex
\\documentclass{tufte-handout}
\\usepackage{amsmath}
\\usepackage{graphicx}
\\usepackage{booktabs}
\\usepackage{units}
\\usepackage{multicol}
\\usepackage{fontspec,xltxtra,xunicode}
\\defaultfontfeatures{Mapping=tex-text}
\\setromanfont[Mapping=tex-text]{Bauer Bodoni Std 1 Roman}
"

("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")

))

(defun org-mode-reftex-setup ()
(load-library "reftex")
(and (buffer-file-name)
(file-exists-p (buffer-file-name))
(reftex-parse-all))
(define-key org-mode-map (kbd "C-c c") 'reftex-citation)
)
(add-hook 'org-mode-hook 'org-mode-reftex-setup)

(setq org-latex-to-pdf-process
  '("rubber -sd %b")
)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

thank you,

adi

On Tue, Jul 26, 2011 at 2:42 PM, Jambunathan K <kjambunathan@gmail.com> wrote:
>
> [OT]
>
> Aditya
>
> ,----
> | I encourage you to post auxiliary files for reproducing the bug right
> | within the mail. The advantage is that the message would remain archived
> | in it's entirety forever and the whole context is available for future
> | references.
> |
> | Posting all the relevant files inline or as attachment has the following
> | other advantages:
> |
> | 1. less taxing on the owner of the bug
> | 2. quicker response or even a resolution
> |
> | ps: I don't mean to hijack this thread. Posting this as a
> | lurker/moderator on this list
> |
> `----
>
> Jambunathan K.
>
>

  reply	other threads:[~2011-07-26 18:57 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-26  0:56 References in Latex Aditya Mandayam
2011-07-26  1:24 ` suvayu ali
2011-07-26  1:33   ` Aditya Mandayam
2011-07-26  2:01     ` suvayu ali
2011-07-26  2:58 ` Nick Dokos
2011-07-26 10:51   ` Aditya Mandayam
2011-07-26 11:44     ` suvayu ali
2011-07-26 18:15       ` Aditya Mandayam
2011-07-26 18:42         ` Jambunathan K
2011-07-26 18:56           ` Aditya Mandayam [this message]
2011-07-26 19:11             ` Christian Moe
2011-07-26 19:45               ` Aditya Mandayam
2011-07-26 19:59         ` suvayu ali
2011-07-26 20:43           ` Aditya Mandayam
2011-07-26 21:24             ` suvayu ali

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CABiTF5MZ2CwtMbF=7Py429pQrUHW7tjRpG=aGjLHGY3SEg1fnA@mail.gmail.com' \
    --to=adityams@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=kjambunathan@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).