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

Commented Unassigned: Bibword Styles & Word 2016 (Mac) [12197]

$
0
0
Bibword styles seem to cause Word for Mac 2016 to crash when switching to a bibword style (e.g. IEEE). Installed as per previous versions by copying all xml files to Microsoft Word 2016.app->Content->Resources->Style.
Comments: ** Comment from web user: DRock84 **

I was able to get the styles installed. It is a very different location from previous versions of Word for Mac.

~/Library/Group Containers/UBF8T346G9.Office/User Content/Citations


New Post: What part of the code should change to put the author's full name in the bibliography ?

$
0
0
Hey, I'm in the same boat as you are, hopefully Yves will check this thread and shed some light into the problem.

Really wish I could reference like you showed automatically, would save me eons in my current work.

New Post: Chicago Footnotes

$
0
0
The Chicago Footnotes file doesn’t work. I put it in the right directory where every other BibWord reference format I downloaded works, but Chicago footnotes just doesn’t show up. Does anybody know where to get an XLS file for Chicago Footnotes? It’s the only reference format that works for my line of work (history). I would be most grateful for any help.

Reviewed: Associação Brasileira de Normas Técnicas style (abr 11, 2017)

$
0
0
Rated 5 Stars (out of 5) - Quando for inserir endereços web, cuidado para não incluir no formulário os caracteres "<" e ">". Isso causa um erro que impede que a bibliografia seja gerada.

New Post: "p." insted of "pág." (APA style xml file)

$
0
0
Please here is my problem

When I cite using APA it says
(LastName, Year, Pág. X)
The correct way is: (LastName, Year, p. X)

How can I edit the file APASixthEditionOfficeOnline.xml (for Microsoft Word) to fix this problem?

Please: You can see this problem in: https://tinyurl.com/apa-problem

I will appreciate your help to improve my APA style.

New Post: Prevent automatic 'free space' after %Author%

$
0
0
Hello everyone,
I am creating my bibliography and stumbling over something weird:
When I add the %Author% variable to my <format> section and want to put some character directly behind it, let's say a colon ( : ), then there is still a single 'free space' in between (see yellow mark):
Image
Notice(!): When I add an entry of the same source type (book) with company information instead of author information, it does not show this extra 'free space' (see the second entry in the image above).

Here's my respective XSL-Code:
  • <bibliography>-Section:
    Image
  • <namelist>-Section:
    Image
Anyone with a solution to prevent that 'free space' in between?
Thanks a million in advance!

Kind regards,
Abeldian

New Post: Help with bibliography

$
0
0
hello, thanks for the vancouver style citation. I am facing a problem with display of bibliography at the end of document. even though I type the initials and surnames of authors in citation manager, in display in bibliography, only the first authors full surname is displayed.

eg

Melmed S CFHAKDMVJAea. Diagnosis and Treatment of Hyperprolactinemia: An Endocrine Society Clinical Practice Guideline. J Clin Endocrinol Metab. 2011 Feb; 96(2): p. 273-288.


what it should be

Melmed S, Casanueva FF, Hoffman AR, Kleinberg DL, Montori VM, Schlechte JA, Wass JA; Diagnosis and treatment of hyperprolactinemia: an Endocrine Society clinical practice guideline
J Clin Endocrinol Metab. 2011 Feb;96(2):273-88

New Post: Square brackets around citation numbers in AMA style?

$
0
0
Hi I need to use the AMA style for my bibliography but need for the citations in the text to have [] around the numbers which at the moment they don't have. How do I modify the style to have this?

Thanks in advance for your advice.

Reviewed: BibWord styles (Jun 10, 2017)

$
0
0
Rated 3 Stars (out of 5) - I don't think it was updated to all referencing styles. I could not find USW Havard referencing in this. A further update will help a great deal.

Reviewed: BibWord styles (Jul 12, 2017)

$
0
0
Rated 5 Stars (out of 5) - This site is great, but styles now out of date - does anyone know if this work has been taken over by anyone else. Am looking for 6th edition of Harvard Anglia referencing, and I'm not clever enough to modify the existing style!

New Post: MHRA footnote style SOLVED for Word (BibWord)

$
0
0
Just before all this disappears, as the new academic year begins, I thought I would post a definitive solution to the MHRA footnote style not being picked up by certain versions of word, despite other .XSL files being picked up when installed in the same, relevant, folder.

As others have pointed out, the file hosted on the site seems to need a slight tweak. Basically open the MHRA XSL file with a text editor, and then replace the section from the first instance of 'ssl:choose' to just before the '<!-- Formats a bibliography for display. -->' section with the code below. Worked for me anyway! Then save the new file and so on.

Have a good academic year!
<xsl:choose>
      <!-- Gets the name of the style as it will be displayed in Word 2007 / 2010. -->
      <xsl:when test="b:StyleName">
        <xsl:value-of select="msxsl:node-set($data)/general/stylename"/>
      </xsl:when>

      <!-- Gets the version information for the style in Word 2007 / 2010. -->
      <xsl:when test="b:Version">
        <xsl:value-of select="msxsl:node-set($data)/general/version"/>
      </xsl:when>

      <!-- Sets a version number in Word 2013. -->
      <xsl:when test="b:XslVersion">
        <xsl:choose>
          <xsl:when test="msxsl:node-set($data)/general/version2013">
            <xsl:value-of select="msxsl:node-set($data)/general/version2013"/>
          </xsl:when>
          <xsl:otherwise>
            <!-- Fallback method : use a dummy version number of 1. -->
            <xsl:text>1</xsl:text>
          </xsl:otherwise>
        </xsl:choose>
      </xsl:when>

      <!-- Set the name of the style in Word 2013. -->
      <xsl:when test="b:StyleNameLocalized">
        <xsl:value-of select="msxsl:node-set($data)/general/stylename"/>
      </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>

      <!-- Formats a citation for display. -->
      <xsl:when test="b:Citation">
        <xsl:choose>
          <xsl:when test="msxsl:node-set($data)/citation">
            <xsl:call-template name="format-citation"/>
          </xsl:when>
          <xsl:otherwise>
            <!-- Fallback method. -->
            <xsl:call-template name="format-footnote-citation"/>
          </xsl:otherwise>
        </xsl:choose>
      </xsl:when>

      <!-- Formats a footnote citation for display (Word 2008 or later). -->
      <xsl:when test="b:FootnoteCitation">
        <xsl:choose>
          <xsl:when test="msxsl:node-set($data)/footnotecitation">
            <xsl:call-template name="format-footnote-citation"/>
          </xsl:when>
          <xsl:otherwise>
            <!-- Fallback method. -->
            <xsl:call-template name="format-citation"/>
          </xsl:otherwise>
        </xsl:choose>
      </xsl:when>

New Post: repeated author

$
0
0
Hello, is there a way to handle repeated authors like the MLA Style that changes the names to "—." if they're the same as the above? Thanks!

Patch Uploaded: #18807

$
0
0

anulka has uploaded a patch.

Description:
Why doesn't it work with MS 2016. It was ok with MS 2007 and 2013.

Reviewed: Vancouver style (Nov 13, 2017)

$
0
0
Rated 5 Stars (out of 5) - Thank you so much: made writing my scientific essays much easier and less faffful!

New Comment on "Styles"

$
0
0
For Office 365 users...I found the above thread almost useless. But what I did do though was use some of the key words in the thread. I searched on my C drive for "Livecontent", and then found the correct path to that folder in my instance...and then followed the original thread, and pasted the file in there. It seems to have worked. Hope this helps others!

Reviewed: BibWord styles (Nov 20, 2017)

$
0
0
Rated 1 Stars (out of 5) - This would be great if the latest version of Word 2017 for Mac recognised and added in the styles. Have spent 2 hours trying to get Word to add the styles with no joy. Downloaded styles were pasted into the Applications/Word/Content/Styles. No other path seems plausible on the current Mac OS.

New Post: Installation instructions for Word 2016 for Mac has incorrect path for file installation

$
0
0
I have added the downloaded styles folder to this location mentioned by DRock84 and Word on my Mac still does not update the list of available styles. I am using the most current version of Word for Mac.

Any ideas? This has literally driven me insane trying to install this!
Viewing all 637 articles
Browse latest View live


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