emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Let's discuss citation and Org syntax


From: Joseph Vidal-Rosset
Subject: Re: [O] Let's discuss citation and Org syntax
Date: Sat, 4 Jan 2014 11:17:06 +0100

Dear John,

Thanks for your efforts to help me. I have good news. 

2014/1/3 John Hendy <address@hidden>
Can you post:
- Minimal .org file

Here is a minimal-paper.org 

#+OPTIONS: LaTeX:verbatim
#+LaTeX_CLASS: article
#+LaTeX_CLASS_OPTIONS: [a4paper,twoside,twocolumn]
#+LaTeX_CLASS_OPTIONS: [captions=tableheading]
#+LATEX_HEADER: \usepackage[AUTO]{inputenc}
#+LATEX_HEADER: \usepackage{fitch}
#+LATEX_HEADER: \usepackage{bussproofs}
#+LaTeX_CLASS: article
#+TITLE:Minimal reference
#+AUTHOR: Max IMIN
#+BEGIN_abstract
 Mini test
#+END_abstract
#+OPTIONS: tex:imagemagick
* First section 

Tennant [[cite:tennant96]] wrote :  

#+BEGIN_QUOTE
quotation of Tennnant's paper...
#+END_QUOTE

#+BIBLIOGRAPHY: minimal-bibliography plain option:-a

- Reproducible .emacs with what you currently have setup to get things working

I do not know if this list accept the attachment, but I know that in general, attachments are not welcome. So here is the minimal set up of org in my minimal init.el (I do not reproduce here what concerns bitex, biblatex, latex and reftex in this email): 

;; org-mode
(add-to-list 'load-path "~/.emacs.d/elpa/org-20131230")
;;répertoire contrib : org-plus-contrib
(add-to-list 'load-path "~/.emacs.d/elpa/org-plus-contrib-20131230/")

(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))

(global-set-key "\C-cl" 'org-store-link)
     (global-set-key "\C-cc" 'org-capture)
     (global-set-key "\C-ca" 'org-agenda)
     (global-set-key "\C-cb" 'org-iswitchb)

(require 'org)
(require 'ob-latex)
(require 'ox-latex)
(require 'org-mime)
(require 'ox-html)
(require 'ox-ascii)
(require 'ox-org)
(require 'ox-bibtex)
 
- The matching minimal bibliography file

Here is my minimal-bibliography.bib: 

@Article{tennant96,
  author = {Tennant, N.},
  title = {{The Law of Excluded Middle is Synthetic A Priori, if Valid}},
  journal = {Philosophical Topics},
  year = 1996,
  number = 24,
  pages = {241-266}
}
 
- Perhaps the output you want (in LaTeX or whatever output language)


I am happy to tell you that the export works in latex as well as in html ! Thanks to all ! 

Now just details , how to converts correctly the latex syntax : \cite[p. 1]{key} ? , and how is it possible to use easily reftex ? I do not succeed to find ebib very convenient. 

Again, many many thanks !

Jo. 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]