-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for biblatex-like citation commands #90
Comments
+1 I'm was just looking for the same thing. For comparison Natbib citation styles has: cite:, citep, citet*, citep*, citeauthor and citeyear. Seems to be support for accessing these fields in bibtex-ruby. |
The functionality could be matched, but it would still have to adhere to AsciiDoc syntax, meaning inline macros. AsciiDoc is not LaTeX and I don't want it to start morphing into it. |
Inline macros of course. Not really following though with morphing. How do you mean? |
All I'm pointing out is that the primary syntax element must be a macro (not |
@mojavelinux Writing my thesis now and it would be very useful to be able to cite titles as well. Is it a lot of work to implement? What about for someone that has not coded for AsciiDoctor and barely Ruby before? |
There was a time when I had not written in Ruby. I picked up Asciidoctor and was maintaining it a few weeks later. I think Ruby is one of those programming languages that just makes sense and is easy to step into. But on top of that, there are hundreds of people in the chat, some of who would be willing to help you work through the code. There are lots of examples of custom macros in the extensions lab to get you started. We tried to make writing a macro extension as simple as possible, at least the part of defining the macro. As for what it takes to implement the logic, well, that depends on how difficult the feature itself is to implement. I would recommend creating a topic in the chat and talk through what you are doing. People will follow along and jump in when they have something to say. |
I was looking for more lightweight alternatives for scientific writing than LaTeX and asciidoc sounds like a viable option. However, what is currently missing for me in asciidoctor-bibtex is something like the content citations commands known from biblatex like
\citefullauthor
or\citetitle
. Would it be possible to add something like these to this package here?The text was updated successfully, but these errors were encountered: