sQuote                 package:base                 R Documentation

_Q_u_o_t_e _T_e_x_t

_D_e_s_c_r_i_p_t_i_o_n:

     Single or double quote text by combining with appropriate single
     or double left and right quotation marks.

_U_s_a_g_e:

     sQuote(x)
     dQuote(x)

_A_r_g_u_m_e_n_t_s:

       x: an R object, to be coerced to a character vector.

_D_e_t_a_i_l_s:

     The purpose of the functions is to provide a simple means of
     markup for quoting text to be used in the R output, e.g., in
     warnings or error messages.

     The choice of the appropriate quotation marks depends on both the
     locale and the available character sets.  Older Unix/X11 fonts
     displayed the grave accent (0x60) and the apostrophe (0x27) in a
     way that they could also be used as matching open and close single
     quotation marks.  Using modern fonts, or non-Unix systems, these
     characters no longer produce matching glyphs.  Unicode provides
     left and right single quotation mark characters (U+2018 and
     U+2019); if Unicode cannot be assumed, it seems reasonable to use
     the apostrophe as an undirectional single quotation mark.

     Similarly, Unicode has left and right double quotation mark
     characters (U+201C and U+201D); if only ASCII's typewriter
     characteristics can be employed, than the ASCII quotation mark
     (0x22) should be used as both the left and right double quotation
     mark.

     'sQuote' and 'dQuote' currently only provide undirectional ASCII
     quotation style, but may be enhanced in the future.

_R_e_f_e_r_e_n_c_e_s:

     Markus Kuhn, "ASCII and Unicode quotation marks". <URL:
     http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html>

_E_x_a_m_p_l_e_s:

     paste("argument", sQuote("x"), "must be non-zero")

