emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Agenda view with bibliographic references
@ 2012-05-14  7:42 G. Martin Butz
  2012-05-14 13:50 ` Darlan Cavalcante Moreira
  0 siblings, 1 reply; 3+ messages in thread
From: G. Martin Butz @ 2012-05-14  7:42 UTC (permalink / raw)
  To: emacs-orgmode@gnu.org

Hallo to all,

as I have quite a few bibliographic references scattered around several 
files, I build myself a custom agenda view, gathering all references 
(tagged with "bib") using the column view.

(setq org-agenda-custom-commands
       '(("l" "Literaturliste" tags "Bib"
         ((org-agenda-remove-tags t)
	(org-agenda-overriding-columns-format "%80ITEM %20FILE")
	(org-agenda-view-columns-initially t))
	(org-agenda-sorting-strategy '(alpha-up))
	(org-agenda-compact-blocks t))
	))

I wonder, if it is possible to get an alphabetically sorted list of all 
entries without having them displayed filewise. Right now my agenda view 
displayes the entries like:

a_item | x.org
m_item | x.org
b_item | y.org
n_item | y.org
aso.

What I would like is the following

a_item | x.org
b_item | y.org
m_item | x.org
n_item | y.org
aso.

Or - if this is not possible - can I at least show a short version of 
the file name (like in the ordinary agenda view)? Right now the column 
"file" displays the full file path which I do not need.

Can anybody help?

Many thanks in advance
Martin

-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| G. Martin Butz, mb@mkblog.org, 0421 98749324, www.mkblog.org |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Agenda view with bibliographic references
  2012-05-14  7:42 Agenda view with bibliographic references G. Martin Butz
@ 2012-05-14 13:50 ` Darlan Cavalcante Moreira
  2012-05-14 20:38   ` G. Martin Butz
  0 siblings, 1 reply; 3+ messages in thread
From: Darlan Cavalcante Moreira @ 2012-05-14 13:50 UTC (permalink / raw)
  To: butz; +Cc: emacs-orgmode@gnu.org


What if you manually set the category property of each reference to a short
title for the reference? The category appears in the agenda and you can use
it as a sort strategy.

--
Darlan

At Mon, 14 May 2012 09:42:23 +0200,
"G. Martin Butz" <butz@sym.net> wrote:
> 
> Hallo to all,
> 
> as I have quite a few bibliographic references scattered around several 
> files, I build myself a custom agenda view, gathering all references 
> (tagged with "bib") using the column view.
> 
> (setq org-agenda-custom-commands
>        '(("l" "Literaturliste" tags "Bib"
>          ((org-agenda-remove-tags t)
> 	(org-agenda-overriding-columns-format "%80ITEM %20FILE")
> 	(org-agenda-view-columns-initially t))
> 	(org-agenda-sorting-strategy '(alpha-up))
> 	(org-agenda-compact-blocks t))
> 	))
> 
> I wonder, if it is possible to get an alphabetically sorted list of all 
> entries without having them displayed filewise. Right now my agenda view 
> displayes the entries like:
> 
> a_item | x.org
> m_item | x.org
> b_item | y.org
> n_item | y.org
> aso.
> 
> What I would like is the following
> 
> a_item | x.org
> b_item | y.org
> m_item | x.org
> n_item | y.org
> aso.
> 
> Or - if this is not possible - can I at least show a short version of 
> the file name (like in the ordinary agenda view)? Right now the column 
> "file" displays the full file path which I do not need.
> 
> Can anybody help?
> 
> Many thanks in advance
> Martin
> 
> -- 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> | G. Martin Butz, mb@mkblog.org, 0421 98749324, www.mkblog.org |
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Agenda view with bibliographic references
  2012-05-14 13:50 ` Darlan Cavalcante Moreira
@ 2012-05-14 20:38   ` G. Martin Butz
  0 siblings, 0 replies; 3+ messages in thread
From: G. Martin Butz @ 2012-05-14 20:38 UTC (permalink / raw)
  To: emacs-orgmode

Hallo Darlan,

thanks for the input, which gives me new insights. E.g. I found out, 
that I can just display CATEGORY in one column of the column view (not 
the whole file path), which solves one of my minor problems.

Nevertheless, I wanted to avoid any redundant data input (such as the 
authors sirname as 'category', which would make sense because I would 
like to sort the the references according to authors alphabetically).

Thanks and greetings
Martin

Am 14.05.2012 15:50, schrieb Darlan Cavalcante Moreira:
>
> What if you manually set the category property of each reference to a short
> title for the reference? The category appears in the agenda and you can use
> it as a sort strategy.
>
> --
> Darlan
>
> At Mon, 14 May 2012 09:42:23 +0200,
> "G. Martin Butz"<butz@sym.net>  wrote:
>>
>> Hallo to all,
>>
>> as I have quite a few bibliographic references scattered around several
>> files, I build myself a custom agenda view, gathering all references
>> (tagged with "bib") using the column view.
>>
>> (setq org-agenda-custom-commands
>>         '(("l" "Literaturliste" tags "Bib"
>>           ((org-agenda-remove-tags t)
>> 	(org-agenda-overriding-columns-format "%80ITEM %20FILE")
>> 	(org-agenda-view-columns-initially t))
>> 	(org-agenda-sorting-strategy '(alpha-up))
>> 	(org-agenda-compact-blocks t))
>> 	))
>>
>> I wonder, if it is possible to get an alphabetically sorted list of all
>> entries without having them displayed filewise. Right now my agenda view
>> displayes the entries like:
>>
>> a_item | x.org
>> m_item | x.org
>> b_item | y.org
>> n_item | y.org
>> aso.
>>
>> What I would like is the following
>>
>> a_item | x.org
>> b_item | y.org
>> m_item | x.org
>> n_item | y.org
>> aso.
>>
>> Or - if this is not possible - can I at least show a short version of
>> the file name (like in the ordinary agenda view)? Right now the column
>> "file" displays the full file path which I do not need.
>>
>> Can anybody help?
>>
>> Many thanks in advance
>> Martin
>>
>> --
>> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> | G. Martin Butz, mb@mkblog.org, 0421 98749324, www.mkblog.org |
>> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-05-14 20:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-14  7:42 Agenda view with bibliographic references G. Martin Butz
2012-05-14 13:50 ` Darlan Cavalcante Moreira
2012-05-14 20:38   ` G. Martin Butz

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).