Quantcast
Channel: BibWord : Microsoft Word Citation and Bibliography styles
Viewing all 637 articles
Browse latest View live

New Post: Word 2013 Installation?

$
0
0
Hi mates,

I am also struggling to put it to work.

My issue regards to the ABNT style as well.

Yves, could you rescue us?
-<xsl:template match="/">-<xsl:choose>
<!-- Sets a dummy version number. -->
-<xsl:when test="b:XslVersion"><xsl:text>10</xsl:text></xsl:when>
<!-- We do not do localization, just use the default name. -->
-<xsl:when test="b:StyleNameLocalized"><xsl:value-of select="msxsl:node-set($data)/general/stylename"/></xsl:when>
<!-- Gets the name of the style as it will be displayed in Word 2007. -->
-<xsl:when test="b:StyleName"><xsl:value-of select="msxsl:node-set($data)/general/stylename"/></xsl:when>
<!-- Gets the version information for the style. -->
-<xsl:when test="b:Version"><xsl:value-of select="msxsl:node-set($data)/general/version"/></xsl:when>
<!-- Gets a description of the style. (Word 2008 or later) -->
-<xsl:when test="b:Description"><xsl:value-of select="msxsl:node-set($data)/general/description"/></xsl:when>
<!-- Gets the URL for updates. (Word 2008 or later) -->
-<xsl:when test="b:UpdateURL"><xsl:value-of select="msxsl:node-set($data)/general/URL"/></xsl:when>
<!-- Retrieve the most important fields for a certain type of citation. -->
-<xsl:when test="b:GetImportantFields"><xsl:variable name="type" select="b:GetImportantFields/b:SourceType"/>-<b:ImportantFields><xsl:copy-of select="msxsl:node-set($data)/importantfields/source[@type = $type]/*"/></b:ImportantFields></xsl:when>

New Post: FW: Can a macro operate within individual fields of a Reference?

$
0
0

I see that macros can do things like convert all in-text citations to static text and remove all uncited sources from a document.

I am interested to know whether macros can work within particular fields of a Reference.

The example I would like to see is a macro that could delete all the comments field entries in a completed Reference List.

When references are being compiled the comments field is a convenient place to record queries against particular sources.

When all the queries are resolved, it can take time to edit all the sources with comments and delete them one by one.

Can we do this in one go with a macro?

New Post: FW: Can a macro operate within individual fields of a Reference?

$
0
0
According to the documentation of the Word Object Model it is not possible to set fields of sources. However when I experimented with it back in 2007 when the feature was first introduced, I noticed that you could change properties of a source as long as the properties were originally defined. You could use this 'bug' to your advantage to remove the comments with a macro like this:
Sub Test()
    Dim s As Source
    
    For Each s In ActiveDocument.Bibliography.Sources
        If InStr(s.XML, "<b:Comments>") > 0 Then
            s.Field("Comments") = ""
        End If
    Next
End Sub

New Post: Word 2013 Installation?

$
0
0
It works. Make sure you insert the correct lines. The instructions are clear, but are easy to mess up.

Someone send me an XSL file earlier today which is incorrectly formatted. A part of the stylename test was gone. Basically there was only the opening of the when tag, it was never closed. So paying attention to the details is important.

New Post: FW: Can a macro operate within individual fields of a Reference?

$
0
0

Thanks Yves, the macro works perfectly!

I appreciate your assistance here, and also deeply appreciate the work you have done in making BibWord available.

Source code checked in, #83716

$
0
0
Made template Word 2013 compatible.

New Post: Vancouver in-text citations as superscript

$
0
0
Yves, can you offer any advice in response to my other questions?

Thanks.

New Post: Word 2013 Installation?

$
0
0
Just did a few on my Surface RT with Office 2013. Works great. Using it with JabRef since I lost my Endnote capabilities. Export Ref database to JabRef, export to BibTex.xml for Word and import. Use your Styles to handle references.
thank you Sir for flying blindly ;)
One silly noob question. For the ACS style you created (American Chemical Society), it's based on a source from 2009 I assume. Most recently the title of the reference is not included. So it should look like this: Koerner, H.; Kelley, J. J.; Vaia, R. A. Macromolecules2008, 41 (13), 4709.
How would I go about to change the style to reflect this?
thanks again

edit: nevermind. Found the <format> line for JournalArticle and was able to fix it. Beautiful. Thank you.

New Post: Word 2013 Installation?

$
0
0
It worked!

Thanks Yves!

The thing is to find the right root. Since I haven't removed my prior Office, I was inserting on the same root

New Post: Vancouver in-text citations as superscript

$
0
0
Thanks for the tutorial. I used the macro and worked well. Now I have the same problem as cannibalwombat. Can you help us again, Yves?

New Post: Vancouver in-text citations as superscript

Released: Council of Science Editors styles (Nov 23, 2008)

$
0
0
Description
Implementation of the Council of Science Editors (CSE) reference style. There are three versions of this style:
  • Citation Sequence: numeric in-text citation based on the order of appearance in the text;
  • Name Sequence: numeric in-text citation based on the position of the source within the alphabetically ordered bibliography;
  • Name Year: classic author-date citation system.
Currently, only an implementation of the first two is available.

As the current version of the bibliography tools in Word 2007 does not support to order a bibliography and use the position as in-text citation, theBibWord Extender tool is needed to achieve theName Sequence version of the style.
Author(s)
Yves Dhondt
Style Name
CSE - Citation Sequence (CSECitSeq.xsl)
CSE - Name Sequence* (CSENameSeq.xsl)
Supported Types
  • ArticleInAPeriodical
  • Book
    • ElectronicBook
  • BookSection
    • ElectronicBookSection
  • ConferenceProceedings
  • DocumentFromInternetSite
  • ElectronicSource
  • Film
  • InternetSite
  • JournalArticle
  • Patent
  • Report
    • Thesis
  • SoundRecording
Note: To use the subtypes (e.g. Thesis), enter the data using the base type (e.g. Report) and set the Type field of the source to the value of the subtype (e.g. Thesis).
Remarks
  • These styles are made using BibWord.
  • For detailed installation instructions see here.
  • To use the CSE - Name Sequence style* the BibWord Extender tool is required.
FAQ
Q: Why do I get 'BO' between brackets instead of a number when using the CSE - Name Sequence style*?

A: The CSE - Name Sequence* style requires the BibWord Extender tool to function properly. This tool will decide the on the numbers to place instead of 'BO'.

Updated Release: Council of Science Editors styles (nov 23, 2008)

$
0
0
Description
Implementation of the Council of Science Editors (CSE) reference style. There are three versions of this style:
  • Citation Sequence: numeric in-text citation based on the order of appearance in the text;
  • Name Sequence: numeric in-text citation based on the position of the source within the alphabetically ordered bibliography;
  • Name Year: classic author-date citation system.
Currently, only an implementation of the first two is available.

As the current version of the bibliography tools in Word 2007 does not support to order a bibliography and use the position as in-text citation, the BibWord Extender tool is needed to achieve the Name Sequence version of the style.
Author(s)
Yves Dhondt
Style Name
CSE - Citation Sequence (CSECitSeq.xsl)
CSE - Name Sequence* (CSENameSeq.xsl)
Supported Types
  • ArticleInAPeriodical
  • Book
    • ElectronicBook
  • BookSection
    • ElectronicBookSection
  • ConferenceProceedings
  • DocumentFromInternetSite
  • ElectronicSource
  • Film
  • InternetSite
  • JournalArticle
  • Patent
  • Report
    • Thesis
  • SoundRecording
Note: To use the subtypes (e.g. Thesis), enter the data using the base type (e.g. Report) and set the Type field of the source to the value of the subtype (e.g. Thesis).
Remarks
  • These styles are made using BibWord.
  • For detailed installation instructions see here.
  • To use the CSE - Name Sequence style* the BibWord Extender tool is required.
FAQ
Q: Why do I get 'BO' between brackets instead of a number when using the CSE - Name Sequence style*?

A: The CSE - Name Sequence* style requires the BibWord Extender tool to function properly. This tool will decide the on the numbers to place instead of 'BO'.

Released: Harvard - AGPS style (Feb 08, 2009)

$
0
0
Description
Implementation of the Harvard reference style. As the Harvard reference style is only defined as an(author, date) reference style, its specification varies. Feel free to contact the authors if you have more information about non-supported types.
Examples
  • Arruda, W & Dixson, K 2007, Career distinction: stand out by building your brand, Wiley, Hoboken, NJ, viewed 19 August 2008, <http://library.books24x7.com.ezproxy.usq.edu.au/toc.asp?site=JE61N&bookid=20349>.
  • Berger, IE 2008, 'High (on) technology: producing tourist identities through technologized adventure',Journal of Sport Tourism, vol 13, no. 2, pp. 89-96.
  • Courier Mail 2008, 'Parties still bicker in blended family', 29 July 2008, p. 10.
  • Fahrenheit 9/11 2004, DVD, Columbia Tristar Home, Culver City, California. Written, produced and directed by Michael Moore.
  • Porteous, C 2008, 'Parties still bicker in blended family', Courier Mail, 29 July 2008, p. 10, viewed 12 August 2008, EBSCOHost MegaFILE Premier, Academic Search Premier, item: 200807291010646512.
  • Sandler, L 2008, Becoming an extraordinary manager the 5 essentials for success, AMACOM, New York, viewed 19 August 2008, <http://library.books24x7.com.ezproxy.usq.edu.au/toc.asp?site=JE61N&bookid=22370>.
Author(s)
Yves Dhondt
Style Name
Harvard - AGPS* (HarvardAGPS.xsl)
Supported Types
  • ArticleInAPeriodical
  • Book
  • BookSection
  • ConferenceProceedings
  • DocumentFromInternetSite
  • Film
  • JournalArticle
  • Report
    • Standard
Note: To use the subtypes (e.g. Standard), enter the data using the base type (e.g. Report) and set the Type field of the source to the value of the subtype (e.g. Standard).

Usage

See styles

Remarks

  • This style is made using BibWord.
  • For detailed installation instructions see here.
  • Supports year suffices. To use them, the BibWord Extender tool is required. Without using the tool, all year suffices will be left blank.
  • Use the comments field to put information about online databases.

Updated Release: Harvard - AGPS style (feb 08, 2009)

$
0
0
Description
Implementation of the Harvard reference style. As the Harvard reference style is only defined as an (author, date) reference style, its specification varies. Feel free to contact the authors if you have more information about non-supported types.
Examples
  • Arruda, W & Dixson, K 2007, Career distinction: stand out by building your brand, Wiley, Hoboken, NJ, viewed 19 August 2008, <http://library.books24x7.com.ezproxy.usq.edu.au/toc.asp?site=JE61N&bookid=20349>.
  • Berger, IE 2008, 'High (on) technology: producing tourist identities through technologized adventure', Journal of Sport Tourism, vol 13, no. 2, pp. 89-96.
  • Courier Mail 2008, 'Parties still bicker in blended family', 29 July 2008, p. 10.
  • Fahrenheit 9/11 2004, DVD, Columbia Tristar Home, Culver City, California. Written, produced and directed by Michael Moore.
  • Porteous, C 2008, 'Parties still bicker in blended family', Courier Mail, 29 July 2008, p. 10, viewed 12 August 2008, EBSCOHost MegaFILE Premier, Academic Search Premier, item: 200807291010646512.
  • Sandler, L 2008, Becoming an extraordinary manager the 5 essentials for success, AMACOM, New York, viewed 19 August 2008, <http://library.books24x7.com.ezproxy.usq.edu.au/toc.asp?site=JE61N&bookid=22370>.
Author(s)
Yves Dhondt
Style Name
Harvard - AGPS* (HarvardAGPS.xsl)
Supported Types
  • ArticleInAPeriodical
  • Book
  • BookSection
  • ConferenceProceedings
  • DocumentFromInternetSite
  • Film
  • JournalArticle
  • Report
    • Standard
Note: To use the subtypes (e.g. Standard), enter the data using the base type (e.g. Report) and set the Type field of the source to the value of the subtype (e.g. Standard).

Usage

See styles

Remarks

  • This style is made using BibWord.
  • For detailed installation instructions see here.
  • Supports year suffices. To use them, the BibWord Extender tool is required. Without using the tool, all year suffices will be left blank.
  • Use the comments field to put information about online databases.

Released: Harvard - Anglia style (Nov 23, 2008)

$
0
0
Description
Implementation of the Harvard reference style. As the Harvard reference style is only defined as an(author, date) reference style, its specification varies. This is an implementation for the specification at Anglia Rushkin University.
Examples
  • Okada, Y., Dejima, K. & Ohishi, T., 1995. Analysis and Comparison of PM Synchronous Motor and Induction Motor Type Magnetic Bearings.IEEE Trans. Ind. Appl., 31, pp.1047-53.
  • Padhye, J., Firoiu, V. & Towsley, D., 1999. A Stochastic Model of TCP Reno Congestion Avoidance and Control. CMPSCI Tech. Rep. Univ. of Massachusetts
  • Rose, H.E., 1988. In A Course in Number Theory. New York: Oxford Univ. Press. Ch. 3.
  • Sorin, W.V., 1998. Optical Reflectometry for Component Characterization. In Derickson, D. ed.Fiber Optic Test and Measurement. Englewood Cliffs: Prentice-Hall.
  • Wegmuller, M., von der Weid, J.P., Oberson, P. & Gisin, N., 2000. High Resolution Fiber Distributed Measurements With Coherent OFDR. InProc. ECOC'00. Munich, Germany.
Author(s)
Yves Dhondt
Style Name
Harvard - Anglia* (HarvardAnglia.xsl)
Supported Types
  • ArticleInAPeriodical
  • Book
  • BookSection
  • ConferenceProceedings
  • DocumentFromInternetSite
  • Film
  • InternetSite
  • JournalArticle
  • Report (also use for dissertations and standards)

Usage

See styles

Remarks

  • This style is made using BibWord.
  • For detailed installation instructions see here.
  • Year suffices are now supported. To use them, the BibWord Extender is required. Without using the tool, they will all be left blank.
  • Special thanks to David McGowan for reporting some bugs.
  • If you want a space between p./pp. and the actual page number, open the file and replace all ':p.:pp.:' by ':p. :pp. '

Updated Release: Harvard - Anglia style (nov 23, 2008)

$
0
0
Description
Implementation of the Harvard reference style. As the Harvard reference style is only defined as an (author, date) reference style, its specification varies. This is an implementation for the specification at Anglia Rushkin University.
Examples
  • Okada, Y., Dejima, K. & Ohishi, T., 1995. Analysis and Comparison of PM Synchronous Motor and Induction Motor Type Magnetic Bearings. IEEE Trans. Ind. Appl., 31, pp.1047-53.
  • Padhye, J., Firoiu, V. & Towsley, D., 1999. A Stochastic Model of TCP Reno Congestion Avoidance and Control. CMPSCI Tech. Rep. Univ. of Massachusetts
  • Rose, H.E., 1988. In A Course in Number Theory. New York: Oxford Univ. Press. Ch. 3.
  • Sorin, W.V., 1998. Optical Reflectometry for Component Characterization. In Derickson, D. ed. Fiber Optic Test and Measurement. Englewood Cliffs: Prentice-Hall.
  • Wegmuller, M., von der Weid, J.P., Oberson, P. & Gisin, N., 2000. High Resolution Fiber Distributed Measurements With Coherent OFDR. In Proc. ECOC'00. Munich, Germany.
Author(s)
Yves Dhondt
Style Name
Harvard - Anglia* (HarvardAnglia.xsl)
Supported Types
  • ArticleInAPeriodical
  • Book
  • BookSection
  • ConferenceProceedings
  • DocumentFromInternetSite
  • Film
  • InternetSite
  • JournalArticle
  • Report (also use for dissertations and standards)

Usage

See styles

Remarks

  • This style is made using BibWord.
  • For detailed installation instructions see here.
  • Year suffices are now supported. To use them, the BibWord Extender is required. Without using the tool, they will all be left blank.
  • Special thanks to David McGowan for reporting some bugs.
  • If you want a space between p./pp. and the actual page number, open the file and replace all ':p.:pp.:' by ':p. :pp. '

Released: Harvard - Exeter style (Feb 08, 2009)

$
0
0
Description
Implementation of the Harvard reference style. As the Harvard reference style is only defined as an(author, date) reference style, its specification varies. This is an implementation for the specification at University of Exeter. As the guide only describes a limited number of types, this style is rather limited. Feel free to contact the authors if you have more information about other types.
Examples
  • Hart, G., Albrecht, M., Bull, R. and Marshall, L. (1992) 'Peer consultation: A professional development opportunity for nurses employed in rural settings', Australian Rural Health Conference, Toowoomba, 143-148.
  • McCarthy, P. and Hatcher, C. (1996) Speaking persuasively: Making the most of your presentations, Sydney: Allen and Unwin.
  • Muller, V. (1994) 'Trapped in the body: Transsexualism, the law, sexual identity',The Australian Feminist Law Journal, vol. 3, no. 2, Aug, pp. 103-107.
  • Napier, A. (1993a) Fatal storm, Sydney: Allen and Unwin.
  • Napier, A. (1993b) Survival at sea, Sydney: Allen and Unwin.
  • Skagren, E.I. and Odberg, B. (1998) 'Predictive factors for 1-year outcome of low-back and neck pain in patients treated in primary care: Comparison between the treatment strategies chiropractic and physiotherapy',Pain, vol. 77, no. 2, pp. 201-208, Available: Elsevier/ScienceDirect/ O304-3959(98)00101-8 [8 Feb 1999].
  • 'Tax-free savings push', Sunday Mail (4 Apr 1999), p. 3.
  • The University Encyclopedia (1985), London: Roydon.
  • Young, C. (2001) English Heritage position statement on the Valletta Convention, [Online], Available: http://www.archaeol.freeuk.com/EHPositionStatement.htm [24 Aug 2001].
Author(s)
Yves Dhondt
Style Name
Harvard - Exeter* (HarvardExeter.xsl)
Supported Types
  • ArticleInAPeriodical
  • Book
  • BookSection
  • ConferenceProceedings
  • InternetSite
  • JournalArticle
  • Misc

Usage

See styles

Remarks

  • This style is made using BibWord.
  • For detailed installation instructions see here.
  • Supports year suffices. To use them, the BibWord Extender tool is required. Without using the tool, all year suffices will be left blank.

Updated Release: Harvard - Exeter style (feb 08, 2009)

$
0
0
Description
Implementation of the Harvard reference style. As the Harvard reference style is only defined as an (author, date) reference style, its specification varies. This is an implementation for the specification at University of Exeter. As the guide only describes a limited number of types, this style is rather limited. Feel free to contact the authors if you have more information about other types.
Examples
  • Hart, G., Albrecht, M., Bull, R. and Marshall, L. (1992) 'Peer consultation: A professional development opportunity for nurses employed in rural settings', Australian Rural Health Conference, Toowoomba, 143-148.
  • McCarthy, P. and Hatcher, C. (1996) Speaking persuasively: Making the most of your presentations, Sydney: Allen and Unwin.
  • Muller, V. (1994) 'Trapped in the body: Transsexualism, the law, sexual identity', The Australian Feminist Law Journal, vol. 3, no. 2, Aug, pp. 103-107.
  • Napier, A. (1993a) Fatal storm, Sydney: Allen and Unwin.
  • Napier, A. (1993b) Survival at sea, Sydney: Allen and Unwin.
  • Skagren, E.I. and Odberg, B. (1998) 'Predictive factors for 1-year outcome of low-back and neck pain in patients treated in primary care: Comparison between the treatment strategies chiropractic and physiotherapy', Pain, vol. 77, no. 2, pp. 201-208, Available: Elsevier/ScienceDirect/ O304-3959(98)00101-8 [8 Feb 1999].
  • 'Tax-free savings push', Sunday Mail (4 Apr 1999), p. 3.
  • The University Encyclopedia (1985), London: Roydon.
  • Young, C. (2001) English Heritage position statement on the Valletta Convention, [Online], Available: http://www.archaeol.freeuk.com/EHPositionStatement.htm [24 Aug 2001].
Author(s)
Yves Dhondt
Style Name
Harvard - Exeter* (HarvardExeter.xsl)
Supported Types
  • ArticleInAPeriodical
  • Book
  • BookSection
  • ConferenceProceedings
  • InternetSite
  • JournalArticle
  • Misc

Usage

See styles

Remarks

  • This style is made using BibWord.
  • For detailed installation instructions see here.
  • Supports year suffices. To use them, the BibWord Extender tool is required. Without using the tool, all year suffices will be left blank.

Released: Harvard - Leeds style (Nov 23, 2008)

$
0
0
Description
Implementation of the Harvard reference style. As the Harvard reference style is only defined as an(author, date) reference style, its specification varies. This is an implementation for the specification at Leeds University.
Examples
  • MIDDLETON, D. and A. D. SPAULDING. 1986. A Tutorial Review of Elements of Weak Signal Detection in Non-Gaussian EMI Environments.
  • MIKKELSEN, B., G. RAYBON, R.-J. ESSIAMBRE et al. 1999. 160 Gbit/s Single-channel Transmission Over 300 km Nonzero-dispersion Fiber With Semiconductor Based Transmitter and Demultiplexer.In: Proc. ECOC'99., pp.28-29.
  • OKADA, Y., K. DEJIMA, and T. OHISHI. 1995. Analysis and Comparison of PM Synchronous Motor and Induction Motor Type Magnetic Bearings.IEEE Trans. Ind. Appl.31, pp.1047-1053.
  • PADHYE, J., V. FIROIU, and D. TOWSLEY. 1999. A Stochastic Model of TCP Reno Congestion Avoidance and Control. Amherst.
  • PATASHNIK, Oran. 1988. Designing BibTex Styles. [online]. Available from World Wide Web: <http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc>
  • RAMAKRISHNAN, K. K. and S. FLOYD. 1999. RFC 2481. A Proposal to Add Explicit Congestion Notification (ECN) to IP. IETF.
  • ROSE, H. E. 1988. In: A Course in Number Theory, New York: Oxford Univ. Press, 3.
Author(s)
Yves Dhondt
Style Name
Harvard - Leeds* (HarvardLeeds.xsl)
Supported Types
  • Art
  • ArticleInAPeriodical
  • Book
    • ElectronicBook
  • BookSection
  • ConferenceProceedings
  • Case
  • DocumentFromInternetSite
  • ElectronicSource
  • Film
  • InternetSite
    • AnonymousInternetSite
    • Blog
  • Interview
  • JournalArticle
    • ElectronicJournalArticle
  • Misc
  • Patent
  • Performance
  • Report
    • Standard
    • Thesis
  • SoundRecording
Note: To use the subtypes (e.g. Thesis), enter the data using the base type(e.g. Report) and set the Type field of the source to the value of the subtype(e.g. Thesis).

Remarks

  • This style is made using BibWord.
  • For detailed installation instructions see here.
  • Supports year suffices. To use them, the BibWord Extender tool is required. Without using the tool, all year suffices will be left blank.
Viewing all 637 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>